selectedChartData slice erstellt

This commit is contained in:
Ismail Ali
2025-03-26 21:08:17 +01:00
parent 626322b079
commit 99d727a925
6 changed files with 69 additions and 32 deletions

View File

@@ -37,8 +37,9 @@ const Kue705FO: React.FC<Kue705FOProps> = ({
`Rendering Kue705FO - SlotIndex: ${slotIndex}, ModulName: ${modulName}`
); */
const selectedChartData = useSelector(
(state: RootState) => state.variables.selectedChartData
(state: RootState) => state.selectedChartData.selectedChartData
);
const dispatch = useDispatch();
const chartRef = useRef(null);

View File

@@ -6,7 +6,6 @@ import { RootState } from "../../../redux/store";
const VersionInfo: React.FC = () => {
const appVersion =
//useSelector((state: RootState) => state.variables.appVersion) ||
useSelector((state: RootState) => state.systemSettings.appVersion) ||
"Unbekannt";
const webVersion = useSelector(