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 2023/02/08 04:08:52 UTC

[skywalking-booster-ui] branch main updated: fix: reset duration for query conditions after time range changes (#226)

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 d93ed2c  fix: reset duration for query conditions after time range changes (#226)
d93ed2c is described below

commit d93ed2c5d347bc23dddf1e1651cc9129725178de
Author: Fine0830 <fa...@gmail.com>
AuthorDate: Wed Feb 8 12:08:45 2023 +0800

    fix: reset duration for query conditions after time range changes (#226)
---
 src/views/dashboard/related/log/Header.vue   | 1 +
 src/views/dashboard/related/trace/Filter.vue | 1 +
 2 files changed, 2 insertions(+)

diff --git a/src/views/dashboard/related/log/Header.vue b/src/views/dashboard/related/log/Header.vue
index 27d28a9..eb3a6a4 100644
--- a/src/views/dashboard/related/log/Header.vue
+++ b/src/views/dashboard/related/log/Header.vue
@@ -343,6 +343,7 @@ limitations under the License. -->
   watch(
     () => appStore.durationTime,
     () => {
+      duration.value = appStore.durationTime;
       if (dashboardStore.entity === EntityType[1].value) {
         init();
       }
diff --git a/src/views/dashboard/related/trace/Filter.vue b/src/views/dashboard/related/trace/Filter.vue
index 45667c1..dcf2749 100644
--- a/src/views/dashboard/related/trace/Filter.vue
+++ b/src/views/dashboard/related/trace/Filter.vue
@@ -270,6 +270,7 @@ limitations under the License. -->
   watch(
     () => appStore.durationTime,
     () => {
+      duration.value = appStore.durationTime;
       if (dashboardStore.entity === EntityType[1].value) {
         init();
       }