TDR Modal Slot Nummer anzeigen
This commit is contained in:
@@ -148,13 +148,19 @@ const Kue705FO: React.FC<Kue705FOProps> = ({
|
||||
modulName
|
||||
);
|
||||
|
||||
const { loopDisplayValue, setLoopDisplayValue } = useLoopDisplay(
|
||||
typeof schleifenwiderstand === "number"
|
||||
const loopValue =
|
||||
activeButton === "TDR"
|
||||
? Array.isArray(tdrLocation) && typeof tdrLocation[slotIndex] === "number"
|
||||
? tdrLocation[slotIndex]
|
||||
: 0
|
||||
: typeof schleifenwiderstand === "number"
|
||||
? schleifenwiderstand
|
||||
: Number(schleifenwiderstand),
|
||||
: Number(schleifenwiderstand);
|
||||
|
||||
const { loopDisplayValue, setLoopDisplayValue } = useLoopDisplay(
|
||||
loopValue,
|
||||
activeButton
|
||||
);
|
||||
|
||||
const zoomPlugin = useChartPlugin();
|
||||
useChartData(loopMeasurementCurveChartData);
|
||||
const { chartInstance } = useTDRChart(selectedChartData);
|
||||
|
||||
Reference in New Issue
Block a user