From b7175585de65ddaf92c78294b7f2225b81fae2ac Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期二, 15 八月 2023 14:22:40 +0800 Subject: [PATCH] Merge branch 'develop' --- src/tabviews/custom/components/share/normalTable/index.jsx | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tabviews/custom/components/share/normalTable/index.jsx b/src/tabviews/custom/components/share/normalTable/index.jsx index d27e52b..90c6088 100644 --- a/src/tabviews/custom/components/share/normalTable/index.jsx +++ b/src/tabviews/custom/components/share/normalTable/index.jsx @@ -337,7 +337,7 @@ let func = new Function('data', col.formula) content = func([record]) } catch (e) { - if (window.debugger) { + if (window.GLOB.debugger === true) { console.warn(e) } content = '' @@ -352,7 +352,7 @@ // eslint-disable-next-line content = eval(content) } catch (e) { - if (window.debugger) { + if (window.GLOB.debugger === true) { console.info(content) console.warn(e) } -- Gitblit v1.8.0