From 52057fa9e43542bcc6d384753f3cc88e361048fb Mon Sep 17 00:00:00 2001 From: Joshua Boniface Date: Sat, 1 Mar 2025 17:21:21 -0500 Subject: [PATCH] Show update interval in seconds --- pvc-vue/src/components/ConfigPanel.vue | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/pvc-vue/src/components/ConfigPanel.vue b/pvc-vue/src/components/ConfigPanel.vue index 7a53180..845656a 100644 --- a/pvc-vue/src/components/ConfigPanel.vue +++ b/pvc-vue/src/components/ConfigPanel.vue @@ -36,15 +36,14 @@
- +
@@ -77,7 +76,7 @@ const emit = defineEmits(['update:modelValue', 'save']); const formData = ref({ apiUri: props.config.apiUri || '', apiKey: props.config.apiKey || '', - updateInterval: props.config.updateInterval || 5000 + updateInterval: props.config.updateInterval / 1000 }); const saveConfig = () => {