mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-05-07 18:52:54 +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 refSpans = [];
|
||||
parentSpans.value = [];
|
||||
refParentSpans.value = [];
|
||||
currentSpan.value = i.data;
|
||||
if (props.type === TraceGraphType.TABLE) {
|
||||
currentSpan.value = i;
|
||||
} else {
|
||||
currentSpan.value = i.data;
|
||||
}
|
||||
if (!currentSpan.value) {
|
||||
return;
|
||||
}
|
||||
|
@ -56,7 +56,6 @@ limitations under the License. -->
|
||||
import { ref, onMounted } from "vue";
|
||||
import type { PropType } from "vue";
|
||||
import { useTraceStore } from "@/store/modules/trace";
|
||||
import type { Span } from "@/types/trace";
|
||||
import TableItem from "./TableItem.vue";
|
||||
import { ProfileConstant, TraceConstant, StatisticsConstant } from "./data";
|
||||
import { TraceGraphType } from "../constant";
|
||||
|
Loading…
Reference in New Issue
Block a user