Fine0830 commented on code in PR #476:
URL: 
https://github.com/apache/skywalking-booster-ui/pull/476#discussion_r2209248363


##########
src/views/dashboard/related/trace/components/List.vue:
##########
@@ -44,7 +45,9 @@ limitations under the License. -->
   });
   const { t } = useI18n();
   const appStore = useAppStoreWithOut();
-  const list = computed(() => Array.from(new Set(props.data.map((i: Span) => 
i.serviceCode))));
+  const data = computed(() => props.data);
+  const traceId = computed(() => props.traceId);

Review Comment:
   Just remove it, no need to assign a value
   
   `defineProps({
       data: { type: Array as PropType<Span[]>, default: () => [] },
       traceId: { type: String, default: "" },
     });`



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@skywalking.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to