diff --git a/nezha-fronted/src/components/common/rightBox/asset/assetBox.vue b/nezha-fronted/src/components/common/rightBox/asset/assetBox.vue
index 54aa87a88..4e6117d31 100644
--- a/nezha-fronted/src/components/common/rightBox/asset/assetBox.vue
+++ b/nezha-fronted/src/components/common/rightBox/asset/assetBox.vue
@@ -91,7 +91,8 @@
-
+
+
@@ -485,6 +486,12 @@ export default {
addMultiTextRow (label) {
label.value.push('')
},
+ removeMultiTextRow (label, index) {
+ if (label.value.length === 1) {
+ return
+ }
+ label.value.splice(index, 1)
+ },
blankLabelValue (label) {
if (label.type.toUpperCase() === this.assetConstants.labelTypeData.CHECKBOX) {
const arr = []