diff --git a/src/frontend/devops-pipeline/src/components/pipelineSetting/RunningLock.vue b/src/frontend/devops-pipeline/src/components/pipelineSetting/RunningLock.vue index b335569b7bb..73fa2ee2f38 100755 --- a/src/frontend/devops-pipeline/src/components/pipelineSetting/RunningLock.vue +++ b/src/frontend/devops-pipeline/src/components/pipelineSetting/RunningLock.vue @@ -265,6 +265,7 @@ requiredRule, { validator: (val) => { + if (!val && val !== 0) return true return /^(?:[1-9]|[1-9][0-9]|1[0-9]{2}|200)$/.test(val) }, message: this.$t('settings.maxConRunningQueueSizeTips'),