mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-05-07 10:42:56 +00:00
update
This commit is contained in:
parent
a4309e3933
commit
319f9bbc30
@ -125,12 +125,16 @@ limitations under the License. -->
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
function handleSelectSpan(i: Recordable) {
|
function handleSelectSpan(i: any) {
|
||||||
const spans = [];
|
const spans = [];
|
||||||
const refSpans = [];
|
const refSpans = [];
|
||||||
parentSpans.value = [];
|
parentSpans.value = [];
|
||||||
refParentSpans.value = [];
|
refParentSpans.value = [];
|
||||||
currentSpan.value = i.data;
|
if (props.type === TraceGraphType.TABLE) {
|
||||||
|
currentSpan.value = i;
|
||||||
|
} else {
|
||||||
|
currentSpan.value = i.data;
|
||||||
|
}
|
||||||
if (!currentSpan.value) {
|
if (!currentSpan.value) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -56,7 +56,6 @@ limitations under the License. -->
|
|||||||
import { ref, onMounted } from "vue";
|
import { ref, onMounted } from "vue";
|
||||||
import type { PropType } from "vue";
|
import type { PropType } from "vue";
|
||||||
import { useTraceStore } from "@/store/modules/trace";
|
import { useTraceStore } from "@/store/modules/trace";
|
||||||
import type { Span } from "@/types/trace";
|
|
||||||
import TableItem from "./TableItem.vue";
|
import TableItem from "./TableItem.vue";
|
||||||
import { ProfileConstant, TraceConstant, StatisticsConstant } from "./data";
|
import { ProfileConstant, TraceConstant, StatisticsConstant } from "./data";
|
||||||
import { TraceGraphType } from "../constant";
|
import { TraceGraphType } from "../constant";
|
||||||
|
Loading…
Reference in New Issue
Block a user