Merge branch 'main' of github.com:apache/skywalking-booster-ui into feat/legend

This commit is contained in:
Fine 2022-11-07 15:08:39 +08:00
commit 5389d346c5
4 changed files with 4 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.6 KiB

View File

@ -173,6 +173,7 @@ function selectTag(item: string) {
function searchTags() {
if (!tags.value) {
tagList.value = tagArr.value;
fetchTagKeys();
return;
}
let search = "";

View File

@ -119,8 +119,8 @@ function updateTimeRange() {
if (!children || !children.length) {
timeRange.value = [
{
start: this.currentSpan.startTime,
end: this.currentSpan.endTime,
start: startTime,
end: endTime,
},
];
return;

View File

@ -141,6 +141,7 @@ if (props.needQuery) {
}
async function init() {
duration.value = filters.duration || appStore.durationTime;
if (dashboardStore.entity === EntityType[1].value) {
await getServices();
}