Ladebalken
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user