From 403bc91f33ca2253d698531e8c6bf0c28b40f5c8 Mon Sep 17 00:00:00 2001 From: kevin Date: Wed, 18 Mar 2026 11:36:59 +0100 Subject: [PATCH] fix: systeme metrics chart --- components/SystemMetricsChart.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/SystemMetricsChart.vue b/components/SystemMetricsChart.vue index d51707b..f4e30fe 100644 --- a/components/SystemMetricsChart.vue +++ b/components/SystemMetricsChart.vue @@ -293,7 +293,7 @@ const visibleHistory = computed(() => { return history.value.filter((point) => point.sampledAt >= minTimestamp) }) -const scaleMax = 100 +const scaleMax = computed(() => 100) const formatValue = (value: number) => `${Math.round(value)}%`