fix systemsView config laod and mutation, fix metricSelection checked

This commit is contained in:
Christoph Kluge
2025-10-07 15:46:16 +02:00
parent cc9dafac6f
commit 70fe8aa367
2 changed files with 39 additions and 23 deletions

View File

@@ -57,12 +57,12 @@
};
/* State Init */
let pendingMetrics = $state(presetMetrics);
let pendingShowFootprint = $state(!!showFootprint);
let listedMetrics = $state([]);
let columnHovering = $state(null);
/* Derives States */
let pendingMetrics = $derived(presetMetrics);
const allMetrics = $derived(loadAvailable(preInitialized || $initialized));
/* Reactive Effects */