diff --git a/frontend/src/components/settings/SystemActivityTab.vue b/frontend/src/components/settings/SystemActivityTab.vue index 7c8d8a0..5e7f091 100644 --- a/frontend/src/components/settings/SystemActivityTab.vue +++ b/frontend/src/components/settings/SystemActivityTab.vue @@ -17,11 +17,6 @@ - - - @@ -177,7 +172,6 @@ import { useSystemActivityStore } from '../../stores/systemActivity.js' import { formatRelative as fmtRelative } from '../../utils/date.js' import ErrorDetailModal from '../common/ErrorDetailModal.vue' import QueuesTable from './QueuesTable.vue' -import WorkerLanesCard from './WorkerLanesCard.vue' import CardHeading from '../common/CardHeading.vue' import GpuActivityPanel from './GpuActivityPanel.vue' import DownloadsActivityPanel from './DownloadsActivityPanel.vue' @@ -242,7 +236,6 @@ function pollQueues() { store.loadQueues() store.loadWorkers() store.loadRecentRuns() - store.loadLanes() } function pollFailures() { if (document.hidden) return diff --git a/frontend/src/components/settings/SystemHealthTab.vue b/frontend/src/components/settings/SystemHealthTab.vue index c1853aa..753d2d2 100644 --- a/frontend/src/components/settings/SystemHealthTab.vue +++ b/frontend/src/components/settings/SystemHealthTab.vue @@ -65,6 +65,17 @@ then neither, and an indicator that reddened on every update would stop being read.

+ + + @@ -73,6 +84,7 @@ import { onMounted } from 'vue' import { useSystemHealthStore } from '../../stores/systemHealth.js' import { formatRelative } from '../../utils/date.js' +import WorkerLanesCard from './WorkerLanesCard.vue' const store = useSystemHealthStore() @@ -91,38 +103,3 @@ function kindLabel(kind) { // One refresh on open, so arriving at the tab doesn't wait out the nav's tick. onMounted(() => { store.refresh() }) - - diff --git a/frontend/src/components/settings/WorkerLanesCard.vue b/frontend/src/components/settings/WorkerLanesCard.vue index dce4fd8..247e9db 100644 --- a/frontend/src/components/settings/WorkerLanesCard.vue +++ b/frontend/src/components/settings/WorkerLanesCard.vue @@ -1,210 +1,194 @@