From 4b2a4af1e73ee45b25e72c0854d83526174551b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E7=A5=A5=E8=B6=85?= Date: Tue, 12 Dec 2023 15:00:38 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E6=9E=81=E9=AA=8C=E7=9B=B8?= =?UTF-8?q?=E5=85=B3=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/server/http-firewall-captcha-options-viewer.js | 2 +- .../js/components/server/http-firewall-captcha-options.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/web/public/js/components/server/http-firewall-captcha-options-viewer.js b/web/public/js/components/server/http-firewall-captcha-options-viewer.js index 3b0f4c8e..c07013b9 100644 --- a/web/public/js/components/server/http-firewall-captcha-options-viewer.js +++ b/web/public/js/components/server/http-firewall-captcha-options-viewer.js @@ -58,7 +58,7 @@ Vue.component("http-firewall-captcha-options-viewer", { } } - if (this.options.geeTestConfig.isOn) { + if (this.options.geeTestConfig != null && this.options.geeTestConfig.isOn) { summaryList.push("已配置极验") } diff --git a/web/public/js/components/server/http-firewall-captcha-options.js b/web/public/js/components/server/http-firewall-captcha-options.js index 45984d2b..7412889e 100644 --- a/web/public/js/components/server/http-firewall-captcha-options.js +++ b/web/public/js/components/server/http-firewall-captcha-options.js @@ -136,7 +136,7 @@ Vue.component("http-firewall-captcha-options", { } } - if (this.options.geeTestConfig.isOn) { + if (this.options.geeTestConfig != null && this.options.geeTestConfig.isOn) { summaryList.push("已配置极验") }