diff --git a/frontend/src/components/pure/ms-tag/ms-tag-group.vue b/frontend/src/components/pure/ms-tag/ms-tag-group.vue
index ccffde92a4..f9e3af9835 100644
--- a/frontend/src/components/pure/ms-tag/ms-tag-group.vue
+++ b/frontend/src/components/pure/ms-tag/ms-tag-group.vue
@@ -7,12 +7,15 @@
{{ getTagContent(tag) }}
+
+ {{ props.isStringTag ? tag : tag[props.nameKey] }}
+
16) {
- tagContent = characterLimit(tagContent, 9);
+ const tagContent = props.isStringTag ? tag : tag[props.nameKey];
+ if (props.showTable) {
+ return tagContent.length > 16 ? characterLimit(tagContent, 9) : tagContent;
}
return tagContent;
}
diff --git a/frontend/src/components/pure/ms-tag/ms-tag.vue b/frontend/src/components/pure/ms-tag/ms-tag.vue
index 77c7ae830d..53f5bb06e1 100644
--- a/frontend/src/components/pure/ms-tag/ms-tag.vue
+++ b/frontend/src/components/pure/ms-tag/ms-tag.vue
@@ -18,7 +18,10 @@
-
+
+
+
+