From ca5d7e8ebedcb701cd793bbe11ca4b3b3c1777be Mon Sep 17 00:00:00 2001 From: Fine Date: Tue, 3 Dec 2024 10:49:24 +0800 Subject: [PATCH] fix --- .../dashboard/related/async-profiling/components/NewTask.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/dashboard/related/async-profiling/components/NewTask.vue b/src/views/dashboard/related/async-profiling/components/NewTask.vue index 5d720872..8ecb6820 100644 --- a/src/views/dashboard/related/async-profiling/components/NewTask.vue +++ b/src/views/dashboard/related/async-profiling/components/NewTask.vue @@ -109,7 +109,7 @@ limitations under the License. --> const selectorStore = useSelectorStore(); const { t } = useI18n(); const serviceInstanceIds = ref([]); - const asyncEvents = ref([ProfilingEvents[0]]); + const asyncEvents = ref([]); const duration = ref(DurationOptions[0].value); const execArgs = ref(""); const loading = ref(false);