diff --git a/nezha-fronted/src/components/common/rightBox/addEndpointBox.vue b/nezha-fronted/src/components/common/rightBox/addEndpointBox.vue index ce4a2fafa..abaeb1300 100644 --- a/nezha-fronted/src/components/common/rightBox/addEndpointBox.vue +++ b/nezha-fronted/src/components/common/rightBox/addEndpointBox.vue @@ -485,7 +485,7 @@ this.inputKeyErr.splice(index, 1); }, validateInput:function(value,index){ - if(!/[a-zA-Z_:][a-zA-Z0-9_:]*/.test(value)){ + if(!/^[a-zA-Z_:][a-zA-Z0-9_:]*/.test(value)){ this.inputKeyErr.splice(index,1,true) }else{ this.inputKeyErr.splice(index,1,false) diff --git a/nezha-fronted/src/components/common/rightBox/editEndpointBox.vue b/nezha-fronted/src/components/common/rightBox/editEndpointBox.vue index 05a002c46..78540c874 100644 --- a/nezha-fronted/src/components/common/rightBox/editEndpointBox.vue +++ b/nezha-fronted/src/components/common/rightBox/editEndpointBox.vue @@ -100,7 +100,7 @@
- + = diff --git a/nezha-fronted/src/components/common/rightBox/moduleBox.vue b/nezha-fronted/src/components/common/rightBox/moduleBox.vue index f8be462b0..ef44dd91d 100644 --- a/nezha-fronted/src/components/common/rightBox/moduleBox.vue +++ b/nezha-fronted/src/components/common/rightBox/moduleBox.vue @@ -283,7 +283,7 @@
- + = diff --git a/nezha-fronted/src/components/common/rightBox/trafficSetting/subBox.vue b/nezha-fronted/src/components/common/rightBox/trafficSetting/subBox.vue index 262fcbbcd..8f6cdcbc9 100644 --- a/nezha-fronted/src/components/common/rightBox/trafficSetting/subBox.vue +++ b/nezha-fronted/src/components/common/rightBox/trafficSetting/subBox.vue @@ -81,7 +81,7 @@ this.inputKeyErr.push(false); }, validateInput:function(value,index){ - if(!/[a-zA-Z_:][a-zA-Z0-9_:]*/.test(value)){ + if(!/^[a-zA-Z_:][a-zA-Z0-9_:]*/.test(value)){ this.inputKeyErr.splice(index,1,true) }else{ this.inputKeyErr.splice(index,1,false)