OPCUA Info Lesen in dashboard
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
import ReactModal from "react-modal";
|
||||
import { useState, useEffect } from "react";
|
||||
import { useSelector, useDispatch } from "react-redux";
|
||||
import { setVariables } from "../../../redux/store/variablesSlice";
|
||||
import { setVariables } from "../../../redux/slices/variablesSlice";
|
||||
import "bootstrap-icons/font/bootstrap-icons.css"; // Import Bootstrap Icons
|
||||
import handleSave, { OriginalValues } from "./handlers/handleSave";
|
||||
import handleDisplayEinschalten from "./handlers/handleDisplayEinschalten";
|
||||
|
||||
@@ -5,13 +5,13 @@ import Chart from "chart.js/auto";
|
||||
import { useSelector } from "react-redux";
|
||||
import KueModal from "../../modales/kueModal/KueModal";
|
||||
import "bootstrap-icons/font/bootstrap-icons.css"; // Import Bootstrap Icons
|
||||
import { RootState } from "../../../redux/store/store";
|
||||
import { RootState } from "../../../redux/store";
|
||||
import { DataTDR } from "../../../redux/types/chartDataTypesTDR";
|
||||
import { useDispatch } from "react-redux";
|
||||
import {
|
||||
setSelectedChartData,
|
||||
setSelectedFileName,
|
||||
} from "../../../redux/store/variablesSlice";
|
||||
} from "../../../redux/slices/variablesSlice";
|
||||
const TDRChartActionBar: React.FC = () => {
|
||||
const [jahr, setJahr] = useState(new Date().getFullYear());
|
||||
const [monat, setMonat] = useState(new Date().getMonth() + 1);
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
// components/modales/kueModal/handlers/handleSave.ts
|
||||
import { setVariables } from "../../../../redux/store/variablesSlice";
|
||||
import { setVariables } from "../../../../redux/slices/variablesSlice";
|
||||
|
||||
export interface OriginalValues {
|
||||
kueID: string[];
|
||||
|
||||
@@ -5,13 +5,13 @@ import Chart from "chart.js/auto";
|
||||
import { useSelector } from "react-redux";
|
||||
import KueModal from "../modales/kueModal/KueModal";
|
||||
import "bootstrap-icons/font/bootstrap-icons.css"; // Import Bootstrap Icons
|
||||
import { RootState } from "../../redux/store/store";
|
||||
import { RootState } from "../../redux/store";
|
||||
import { DataTDR } from "../../redux/types/chartDataTypesTDR";
|
||||
import { useDispatch } from "react-redux";
|
||||
import {
|
||||
setSelectedChartData,
|
||||
setSelectedFileName,
|
||||
} from "../../redux/store/variablesSlice";
|
||||
} from "../../redux/slices/variablesSlice";
|
||||
import TDRPopup from "../modales/kueModal/TDRPopup";
|
||||
|
||||
const Kue705FO: React.FC<Kue705FOProps> = ({
|
||||
|
||||
Reference in New Issue
Block a user