mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-10-15 12:49:17 +00:00
feat: add queries for alarm tags (#417)
This commit is contained in:
@@ -50,7 +50,7 @@ limitations under the License. -->
|
||||
return [];
|
||||
}
|
||||
return props.currentLog.tags.map((d: { key: string; value: string }) => {
|
||||
return `${d.key} = ${d.value}`;
|
||||
return `${d.key}=${d.value}`;
|
||||
});
|
||||
});
|
||||
|
||||
|
@@ -110,7 +110,7 @@ limitations under the License. -->
|
||||
<div>
|
||||
<span class="grey title">Tags:</span>
|
||||
<div class="mb-5" v-for="(tag, index) in currentEvent.tags || []" :key="index" style="white-space: pre-wrap">
|
||||
{{ tag.key + "=" + tag.value }};
|
||||
{{ `${tag.key}=${tag.value}` }};
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user