From fe9029beacf81813f6830028022a9bdc3dda221a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BE=A1=E5=AE=85=E7=94=B7?= <530765310@qq.com> Date: Thu, 27 Apr 2023 05:42:42 +0000 Subject: [PATCH] =?UTF-8?q?update=20public/assets/js/require-table.js.=20?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E4=BE=8B=E5=A6=82=E8=A7=92=E8=89=B2=E7=BB=84?= =?UTF-8?q?=EF=BC=8C=E8=8F=9C=E5=8D=95=E8=A7=84=E5=88=99=E8=8F=9C=E5=8D=95?= =?UTF-8?q?=E5=B7=B2=E7=BB=8F=E5=85=B3=E9=97=AD=E9=80=9A=E7=94=A8=E6=90=9C?= =?UTF-8?q?=E7=B4=A2=EF=BC=8C=E4=BD=86=E6=98=AF=E8=BF=98=E6=98=AF=E7=8A=B6?= =?UTF-8?q?=E6=80=81=E8=BF=98=E6=98=AF=E6=98=BE=E7=A4=BA=E6=90=9C=E7=B4=A2?= =?UTF-8?q?tips=E7=9A=84bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 御宅男 <530765310@qq.com> --- public/assets/js/require-table.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/assets/js/require-table.js b/public/assets/js/require-table.js index ac94aa684..ee04aa202 100755 --- a/public/assets/js/require-table.js +++ b/public/assets/js/require-table.js @@ -706,7 +706,7 @@ define(['jquery', 'bootstrap'], function ($, undefined) { display = __(value.charAt(0).toUpperCase() + value.slice(1)); } var html = '' + (icon ? ' ' : '') + display + ''; - if (this.operate != false) { + if (typeof this.operate !== 'undefined' && this.operate != false) { html = '' + html + ''; } return html; -- Gitee