From 4d5558ecd6abec29faf0fa4e1e0708992a65a8f9 Mon Sep 17 00:00:00 2001 From: wxg0103 <727495428@qq.com> Date: Wed, 17 May 2023 19:24:28 +0800 Subject: [PATCH] =?UTF-8?q?refactor(=E6=8E=A5=E5=8F=A3=E6=B5=8B=E8=AF=95):?= =?UTF-8?q?=20=E5=8E=BB=E9=99=A4=E6=9C=AC=E5=9C=B0=E6=89=A7=E8=A1=8C?= =?UTF-8?q?=EF=BC=8C=E7=BB=9F=E4=B8=80=E6=94=BE=E5=88=B0=E8=B5=84=E6=BA=90?= =?UTF-8?q?=E6=B1=A0=E6=89=A7=E8=A1=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --story=1012025 --user=王孝刚 彻底去除本地执行,统一放到资源池执行,解决安全隐患-v1,v2同步上 https://www.tapd.cn/55049933/s/1372336 --- .../components/api/automation/schedule/ScheduleMaintain.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/business/components/api/automation/schedule/ScheduleMaintain.vue b/frontend/src/business/components/api/automation/schedule/ScheduleMaintain.vue index d88694969d..c0ef049349 100644 --- a/frontend/src/business/components/api/automation/schedule/ScheduleMaintain.vue +++ b/frontend/src/business/components/api/automation/schedule/ScheduleMaintain.vue @@ -408,7 +408,7 @@ export default { this.$warning(this.$t('workspace.env_group.please_select_env_for_current_scenario')); return; } - if (this.runConfig.runWithinResourcePool && this.runConfig.resourcePoolId == null) { + if (this.runConfig.resourcePoolId == null) { this.$warning(this.$t('workspace.env_group.please_select_run_within_resource_pool')); return; }