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/11/04 12:31:51 UTC

[skywalking-booster-ui] branch main updated: fix trace profiling widget, select the first span by default (#179)

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 ae0b8c0  fix trace profiling widget, select the first span by default (#179)
ae0b8c0 is described below

commit ae0b8c056d647cd6e4cea8c65aa74c8503d3b76b
Author: Fine0830 <fa...@gmail.com>
AuthorDate: Fri Nov 4 20:31:46 2022 +0800

    fix trace profiling widget, select the first span by default (#179)
---
 src/views/dashboard/related/profile/components/SpanTree.vue | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/views/dashboard/related/profile/components/SpanTree.vue b/src/views/dashboard/related/profile/components/SpanTree.vue
index 56dcd07..5315b7a 100644
--- a/src/views/dashboard/related/profile/components/SpanTree.vue
+++ b/src/views/dashboard/related/profile/components/SpanTree.vue
@@ -119,8 +119,8 @@ function updateTimeRange() {
     if (!children || !children.length) {
       timeRange.value = [
         {
-          start: this.currentSpan.startTime,
-          end: this.currentSpan.endTime,
+          start: startTime,
+          end: endTime,
         },
       ];
       return;