You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by wu...@apache.org on 2022/10/31 04:05:31 UTC

[skywalking-booster-ui] branch main updated: fix: reset tag keys list and duration condition (#178)

This is an automated email from the ASF dual-hosted git repository.

wusheng pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/skywalking-booster-ui.git


The following commit(s) were added to refs/heads/main by this push:
     new 4b88d8b  fix: reset tag keys list and duration condition (#178)
4b88d8b is described below

commit 4b88d8bbb30c75c138542e06da7e5478598feaaf
Author: Fine0830 <fa...@gmail.com>
AuthorDate: Mon Oct 31 12:05:25 2022 +0800

    fix: reset tag keys list and duration condition (#178)
---
 src/views/components/ConditionTags.vue       | 1 +
 src/views/dashboard/related/trace/Filter.vue | 1 +
 2 files changed, 2 insertions(+)

diff --git a/src/views/components/ConditionTags.vue b/src/views/components/ConditionTags.vue
index d1f56ff..3eb8697 100644
--- a/src/views/components/ConditionTags.vue
+++ b/src/views/components/ConditionTags.vue
@@ -173,6 +173,7 @@ function selectTag(item: string) {
 function searchTags() {
   if (!tags.value) {
     tagList.value = tagArr.value;
+    fetchTagKeys();
     return;
   }
   let search = "";
diff --git a/src/views/dashboard/related/trace/Filter.vue b/src/views/dashboard/related/trace/Filter.vue
index fd9c369..25d397d 100644
--- a/src/views/dashboard/related/trace/Filter.vue
+++ b/src/views/dashboard/related/trace/Filter.vue
@@ -141,6 +141,7 @@ if (props.needQuery) {
 }
 
 async function init() {
+  duration.value = filters.duration || appStore.durationTime;
   if (dashboardStore.entity === EntityType[1].value) {
     await getServices();
   }