Ladebalken

This commit is contained in:
ISA
2025-04-03 15:34:28 +02:00
parent 584e023dfc
commit 5ffbc751a6
2 changed files with 13 additions and 2 deletions

View File

@@ -84,6 +84,17 @@ const LoopChartActionBar: React.FC = () => {
const elapsedTime = Date.now() - startTime;
const waitTime = Math.max(0, MIN_LOADING_TIME_MS - elapsedTime);
await new Promise((resolve) => setTimeout(resolve, waitTime));
//------------------------
console.log("▶️ Lade Daten für:");
console.log(" Slot:", slotNumber);
console.log(" Typ:", selectedSlotType, "→", type);
console.log(" Modus:", selectedMode);
console.log(" Von:", vonDatum);
console.log(" Bis:", bisDatum);
console.log(" URL:", apiUrl);
console.log(" Daten:", jsonData);
//-----------------------
if (Array.isArray(jsonData) && jsonData.length > 0) {
dispatch(setLoopMeasurementCurveChartData(jsonData));
@@ -144,8 +155,8 @@ const LoopChartActionBar: React.FC = () => {
}}
className="px-3 py-1 bg-white border rounded text-sm"
>
<option value="schleifenwiderstand">Schleifenwiderstand</option>
<option value="isolationswiderstand">Isolationswiderstand</option>
<option value="schleifenwiderstand">Schleifenwiderstand</option>
</select>
<button

View File

@@ -6,5 +6,5 @@
2: Patch oder Hotfix (Bugfixes oder kleine Änderungen).
*/
const webVersion = "1.6.211";
const webVersion = "1.6.212";
export default webVersion;