You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by qi...@apache.org on 2022/04/20 01:00:33 UTC

[skywalking-booster-ui] branch main updated: -- fix: viewLogs button query no data (#70)

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

qiuxiafan 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 6bfb791  -- fix: viewLogs button query no data (#70)
6bfb791 is described below

commit 6bfb7915bb22e755bbf8bebe00691794efcebcd8
Author: Rancho Lee <io...@gmail.com>
AuthorDate: Wed Apr 20 09:00:23 2022 +0800

    -- fix: viewLogs button query no data (#70)
---
 src/views/dashboard/related/trace/Detail.vue | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/views/dashboard/related/trace/Detail.vue b/src/views/dashboard/related/trace/Detail.vue
index c622efb..b16b326 100644
--- a/src/views/dashboard/related/trace/Detail.vue
+++ b/src/views/dashboard/related/trace/Detail.vue
@@ -191,7 +191,7 @@ export default defineComponent({
       const res = await traceStore.getSpanLogs({
         condition: {
           relatedTrace: {
-            traceId: traceId.value || traceStore.currentTrace.traceIds[0],
+            traceId: traceId.value || traceStore.currentTrace.traceIds[0].value,
           },
           paging: { pageNum: pageNum.value, pageSize, needTotal: true },
         },