feat: enhance associating metrics with traces by refId (#192)

This commit is contained in:
Fine0830
2022-11-25 17:33:51 +08:00
committed by GitHub
parent 7a1c83b5fb
commit 23e9742946
6 changed files with 99 additions and 42 deletions

View File

@@ -124,7 +124,7 @@ export default defineComponent({
const title = computed(() => encodeURIComponent(widget.value.title || ""));
const tips = computed(() => encodeURIComponent(widget.value.tips || ""));
const hasAssociate = computed(() =>
["Bar", "Line", "Area"].includes(
["Bar", "Line", "Area", "TopList"].includes(
dashboardStore.selectedGrid.graph &&
dashboardStore.selectedGrid.graph.type
)