fix: systeme metrics chart

This commit is contained in:
2026-03-18 11:36:59 +01:00
parent 0a73c5cb37
commit 403bc91f33

View File

@@ -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)}%`