This is an automated email from the ASF dual-hosted git repository.
benjobs pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-streampark.git
The following commit(s) were added to refs/heads/dev by this push:
new 856b8ac22 [Bug] Fixed Tags front-end display bug (#1551)
856b8ac22 is described below
commit 856b8ac22df670c461d008538481432874b7f4b5
Author: Gerry <[email protected]>
AuthorDate: Fri Sep 9 06:02:45 2022 +0800
[Bug] Fixed Tags front-end display bug (#1551)
Fixed front-end display bug when tag is empty
---
.../streampark-console-webapp/src/views/flink/app/View.vue | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/streampark-console/streampark-console-webapp/src/views/flink/app/View.vue
b/streampark-console/streampark-console-webapp/src/views/flink/app/View.vue
index d967c8974..04e7414fe 100644
--- a/streampark-console/streampark-console-webapp/src/views/flink/app/View.vue
+++ b/streampark-console/streampark-console-webapp/src/views/flink/app/View.vue
@@ -339,7 +339,7 @@
<template
slot="tags"
slot-scope="text, record">
- <a-tooltip>
+ <a-tooltip v-if="record.tags">
<span v-for="(tag,index) in record.tags.split(',')"
:key="'tag-'.concat(index)">
<a-tag color="blue" class="app-tag">{{ tag }}</a-tag>
</span>