fix: add top list query fixes to analysis and dashboard

This commit is contained in:
Christoph Kluge
2026-03-19 11:31:40 +01:00
parent 22057ff281
commit c42898bd99
3 changed files with 23 additions and 14 deletions

View File

@@ -45,7 +45,6 @@
const durationBinOptions = ["1m", "10m", "1h", "6h", "12h"];
/* State Init */
let pagingState = $state({ page: 1, itemsPerPage: 10 }); // Top 10
let selectedHistograms = $state([]); // Dummy For Refresh
let colWidthJobs = $state(0);
let colWidthNodes = $state(0);
@@ -208,7 +207,6 @@
<Refresher
initially={120}
onRefresh={() => {
pagingState = { page: 1, itemsPerPage: 10 };
selectedHistograms = [...$state.snapshot(selectedHistograms)];
}}
/>