diff --git a/pages/performance/index.vue b/pages/performance/index.vue index 1fa3f51..c4c5672 100644 --- a/pages/performance/index.vue +++ b/pages/performance/index.vue @@ -188,15 +188,15 @@
{{ drive.drive_path }}
- - {{ niceBytes(drive.used_space) }} + + {{ niceBytes(drive.usedspace) }}
-
{{ niceBytes(drive.total_space) }}
+
{{ niceBytes(drive.totalspace) }}
{{ t('Total Space') }}
-
{{ niceBytes(drive.used_space) }}
+
{{ niceBytes(drive.usedspace) }}
{{ t('Used') }}
-
{{ niceBytes(drive.available_space) }}
+
{{ niceBytes(drive.availspace) }}
{{ t('Available') }}
@@ -235,7 +235,6 @@ const getMetricsInfo = async () => { for await (const data of $api.streamRequest(url, options)) { // æ›´æ–°metricsInfo.value metricsInfo.value = { ...metricsInfo.value, ...data }; - console.log(metricsInfo.value ) } };