Fix graph tooltip rendering

This commit is contained in:
Girish Ramakrishnan
2025-10-03 17:50:49 +02:00
parent 676f25962d
commit 6977556984
2 changed files with 52 additions and 55 deletions
+1 -3
View File
@@ -6,7 +6,7 @@ const t = i18n.t;
import { ref, onMounted, useTemplateRef, nextTick, onUnmounted } from 'vue';
import AppsModel from '../../models/AppsModel.js';
import { prettyBinarySize, prettyDecimalSize } from '@cloudron/pankow/utils';
import { prettyDecimalSize } from '@cloudron/pankow/utils';
import SystemModel from '../../models/SystemModel.js';
import { SingleSelect } from '@cloudron/pankow';
import GraphItem from '../GraphItem.vue';
@@ -144,7 +144,6 @@ onUnmounted(async () => {
yscale="cpu"
:cpu-count="systemCpus.length"
:high-mark="systemCpus.length * app.cpuQuota/100"
high-mark-label="Max CPU"
>
</GraphItem>
@@ -154,7 +153,6 @@ onUnmounted(async () => {
yscale="memory"
:memory="appMemory"
:high-mark="appMemory"
high-mark-label="Max Memory"
>
</GraphItem>