mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-05-14 09:00:50 +00:00
fix tag value
This commit is contained in:
parent
7c924c75c1
commit
c2dd0fc594
@ -169,7 +169,8 @@ async function fetchTagValues() {
|
|||||||
function selectTag(item: string) {
|
function selectTag(item: string) {
|
||||||
dropdownTag.value.handleClose();
|
dropdownTag.value.handleClose();
|
||||||
if (tags.value.includes("=")) {
|
if (tags.value.includes("=")) {
|
||||||
tags.value += item;
|
const key = tags.value.split("=")[0];
|
||||||
|
tags.value = key + "=" + item;
|
||||||
addLabels();
|
addLabels();
|
||||||
tagArr.value = tagKeys.value;
|
tagArr.value = tagKeys.value;
|
||||||
searchTags();
|
searchTags();
|
||||||
|
Loading…
Reference in New Issue
Block a user