From 821ac2e436075402d3e144b6198fe1e58fddd03c Mon Sep 17 00:00:00 2001 From: wxg0103 <727495428@qq.com> Date: Tue, 23 May 2023 15:17:10 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=B5=8B=E8=AF=95=E8=B7=9F=E8=B8=AA):=20?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=B5=8B=E8=AF=95=E8=AE=A1=E5=88=92=E6=89=B9?= =?UTF-8?q?=E9=87=8F=E6=89=A7=E8=A1=8Ccase=E6=9C=AA=E6=8F=90=E7=A4=BA?= =?UTF-8?q?=E9=80=89=E6=8B=A9=E8=B5=84=E6=BA=90=E6=B1=A0=E7=9A=84=E7=BC=BA?= =?UTF-8?q?=E9=99=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/track/plan/common/PlanRunModeWithEnv.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/frontend/src/business/components/track/plan/common/PlanRunModeWithEnv.vue b/frontend/src/business/components/track/plan/common/PlanRunModeWithEnv.vue index e5b5ccd352..b830a3311b 100644 --- a/frontend/src/business/components/track/plan/common/PlanRunModeWithEnv.vue +++ b/frontend/src/business/components/track/plan/common/PlanRunModeWithEnv.vue @@ -191,6 +191,11 @@ export default { this.$emit('close'); }, handleRunBatch() { + if (this.runConfig.resourcePoolId == null) { + this.$warning( + this.$t("workspace.env_group.please_select_run_within_resource_pool")); + return; + } this.$emit("handleRunBatch", this.runConfig); this.close(); },