From 2ab2dfcafc485205cc6fa64b2fde3850436c0638 Mon Sep 17 00:00:00 2001 From: Fine Date: Tue, 27 Sep 2022 09:53:46 +0800 Subject: [PATCH] remove unuse field --- src/views/dashboard/graphs/TopList.vue | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/views/dashboard/graphs/TopList.vue b/src/views/dashboard/graphs/TopList.vue index c20d7226..93e938e0 100644 --- a/src/views/dashboard/graphs/TopList.vue +++ b/src/views/dashboard/graphs/TopList.vue @@ -80,8 +80,7 @@ const props = defineProps({ }); const { t } = useI18n(); const showTrace = ref(false); -const traceOptions = ref<{ id: string; type: string; filter?: unknown }>({ - id: "related" + Math.round(Math.random() * 100), +const traceOptions = ref<{ type: string; filter?: unknown }>({ type: "Trace", }); const key = computed(() => Object.keys(props.data)[0] || "");