From dbf9c36ca07a3dd74b2cd72ef9a3a5e9bef15638 Mon Sep 17 00:00:00 2001 From: Fine Date: Tue, 23 Aug 2022 10:42:21 +0800 Subject: [PATCH] update --- .../dashboard/related/network-profiling/components/Tasks.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/dashboard/related/network-profiling/components/Tasks.vue b/src/views/dashboard/related/network-profiling/components/Tasks.vue index e8408c11..3c1d296b 100644 --- a/src/views/dashboard/related/network-profiling/components/Tasks.vue +++ b/src/views/dashboard/related/network-profiling/components/Tasks.vue @@ -105,7 +105,7 @@ const appStore = useAppStoreWithOut(); const viewDetail = ref(false); /*global Nullable */ const intervalFn = ref>(null); -const inProcess = ref(false); +const inProcess = ref(true); fetchTasks(); async function changeTask(item: EBPFTaskList) { @@ -186,7 +186,7 @@ async function enableInterval() { if (networkProfilingStore.aliveNetwork) { intervalFn.value = setInterval(() => { getTopology(); - }, 180000); + }, 60000); } } async function fetchTasks() {