From 3927198617401c05b826b1f7b10550a608e9c9dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Catarino?= Date: Mon, 19 Sep 2022 14:54:40 +0200 Subject: [PATCH] fix for #444 --- src/modules/dashdot/DashdotModule.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/modules/dashdot/DashdotModule.tsx b/src/modules/dashdot/DashdotModule.tsx index c3a91ee63..83ade8d1d 100644 --- a/src/modules/dashdot/DashdotModule.tsx +++ b/src/modules/dashdot/DashdotModule.tsx @@ -145,30 +145,30 @@ export function DashdotComponent() { const graphs = [ { - name: t('card.graphs.cpu.title'), + name: 'cpu', enabled: cpuEnabled, params: { multiView: dashConfig?.cpuMultiView?.value ?? false, }, }, { - name: t('card.graphs.storage.title'), + name: 'storage', enabled: storageEnabled && !isCompact, params: { multiView: dashConfig?.storageMultiView?.value ?? false, }, }, { - name: t('card.graphs.memory.title'), + name: 'ram', enabled: ramEnabled, }, { - name: t('card.graphs.network.title'), + name: 'network', enabled: networkEnabled, spanTwo: true, }, { - name: t('card.graphs.gpu.title'), + name: 'gpu', enabled: gpuEnabled, spanTwo: true, },