From dfcef390d0f430654019fee8bf6458809dfe60e6 Mon Sep 17 00:00:00 2001 From: zhengkunwang <31820853+zhengkunwang223@users.noreply.github.com> Date: Wed, 12 Jul 2023 21:13:16 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=8F=96=E6=B6=88=20openresty=20?= =?UTF-8?q?=E5=AE=89=E8=A3=85=E6=97=B6=E7=9A=84=E7=AB=AF=E5=8F=A3=E5=BC=80?= =?UTF-8?q?=E6=94=BE=E6=8F=90=E7=A4=BA=20(#1627)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/views/app-store/detail/install/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/views/app-store/detail/install/index.vue b/frontend/src/views/app-store/detail/install/index.vue index 36c42cc06..2adfc0069 100644 --- a/frontend/src/views/app-store/detail/install/index.vue +++ b/frontend/src/views/app-store/detail/install/index.vue @@ -224,7 +224,7 @@ const submit = async (formEl: FormInstance | undefined) => { if (req.memoryLimit < 0) { req.memoryLimit = 0; } - if (req.advanced && !req.allowPort) { + if (installData.value.app.key != 'openresty' && req.advanced && !req.allowPort) { ElMessageBox.confirm(i18n.global.t('app.installWarn'), i18n.global.t('app.checkTitle'), { confirmButtonText: i18n.global.t('commons.button.confirm'), cancelButtonText: i18n.global.t('commons.button.cancel'),