mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-06-17 12:26:19 +00:00
fix metrics query (#430)
This commit is contained in:
parent
536df8c052
commit
7338cec6b4
@ -88,7 +88,7 @@ limitations under the License. -->
|
|||||||
const index = isNaN(item.activedTabIndex) ? 0 : item.activedTabIndex;
|
const index = isNaN(item.activedTabIndex) ? 0 : item.activedTabIndex;
|
||||||
widgets.push(
|
widgets.push(
|
||||||
...item.children[index].children.filter(
|
...item.children[index].children.filter(
|
||||||
(d: LayoutConfig) => !ListChartTypes.includes(d.graph?.type || ""),
|
(d: LayoutConfig) => d.type === WidgetType.Widget && !ListChartTypes.includes(d.graph?.type || ""),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user