diff options
author | geireann <geireann.lindfield@gmail.com> | 2024-10-13 16:24:17 -0400 |
---|---|---|
committer | geireann <geireann.lindfield@gmail.com> | 2024-10-13 16:24:17 -0400 |
commit | a60c12ddef3db4123dffb2c91b446d20633f523a (patch) | |
tree | 1504784fa7a9f3757f884983ba3026bfb51ab62d /src/client/util/CurrentUserUtils.ts | |
parent | 645baa8d0c59fe575f8b41060126750aa3311391 (diff) |
fixes to scripting to generate errors to allow schema view to enter strings that conflict with function names.
Diffstat (limited to 'src/client/util/CurrentUserUtils.ts')
-rw-r--r-- | src/client/util/CurrentUserUtils.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/util/CurrentUserUtils.ts b/src/client/util/CurrentUserUtils.ts index 274bc79be..798cdf5a9 100644 --- a/src/client/util/CurrentUserUtils.ts +++ b/src/client/util/CurrentUserUtils.ts @@ -782,7 +782,7 @@ pie title Minerals in my tap water return [ {title: "Preview", toolTip: "Show selection preview", btnType: ButtonType.ToggleButton, icon: "portrait", scripts:{ onClick: '{ return toggleSchemaPreview(_readOnly_); }'} }, {title: "1 Line", toolTip: "Single Line Rows", btnType: ButtonType.ToggleButton, icon: "eye", scripts:{ onClick: '{ return toggleSingleLineSchema(_readOnly_); }'} }, - {title: "DataViz", toolTip: "Turn Schema Table into Data Visualization Doc", btnType: ButtonType.ClickButton, icon: "chart-bar", scripts:{ onClick: '{ datavizFromSchema()'} }, ]; + {title: "DataViz", toolTip: "Turn Schema Table into Data Visualization Doc", btnType: ButtonType.ClickButton, icon: "chart-bar", scripts:{ onClick: 'datavizFromSchema()'} }, ]; } static webTools() { |