We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ade76a3 commit 58236f9Copy full SHA for 58236f9
components/service/Ping.vue
@@ -17,7 +17,7 @@ import type { PingService } from '~/types/services'
17
const props = defineProps<PingService>()
18
19
const { data, refresh } = useFetch('/api/services/ping', { query: { id: props.id } })
20
-const { pause } = useIntervalFn(refresh, props?.options?.interval || 10000, { immediate: true })
+const { pause } = useIntervalFn(refresh, props?.options?.interval || 60000, { immediate: true })
21
22
onBeforeUnmount(pause)
23
</script>
0 commit comments