diff --git a/frontend/src/business/components/performance/test/EditPerformanceTestPlan.vue b/frontend/src/business/components/performance/test/EditPerformanceTestPlan.vue index 63516426e1..39fca4e827 100644 --- a/frontend/src/business/components/performance/test/EditPerformanceTestPlan.vue +++ b/frontend/src/business/components/performance/test/EditPerformanceTestPlan.vue @@ -210,13 +210,9 @@ this.$router.push({path: '/performance/test/all'}) }, validTestPlan() { - let reg = /^[\u4e00-\u9fa5_a-zA-Z0-9\s.ยท-]+$/; if (!this.testPlan.name) { this.$error(this.$t('load_test.test_name_is_null')); return false; - } else if (!reg.test(this.testPlan.name)) { - this.$error(this.$t('load_test.special_characters_are_not_supported')); - return false; } if (!this.testPlan.projectId) {