diff options
author | Nathan-SR <144961007+Nathan-SR@users.noreply.github.com> | 2025-04-09 21:23:53 -0400 |
---|---|---|
committer | Nathan-SR <144961007+Nathan-SR@users.noreply.github.com> | 2025-04-09 21:23:53 -0400 |
commit | d5a9567c75e121b73f376718c311585b70f4bf22 (patch) | |
tree | a29c1e9ff2a7013d28c39ca113ba68ae0d2e453e /src/client/views/nodes/DataVizBox/DocCreatorMenu/DocCreatorMenu.tsx | |
parent | e9bc998554515ecbe86f7d00b01d3cf5d2048b6e (diff) |
fixed field validity mapping and type changing
Diffstat (limited to 'src/client/views/nodes/DataVizBox/DocCreatorMenu/DocCreatorMenu.tsx')
-rw-r--r-- | src/client/views/nodes/DataVizBox/DocCreatorMenu/DocCreatorMenu.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/views/nodes/DataVizBox/DocCreatorMenu/DocCreatorMenu.tsx b/src/client/views/nodes/DataVizBox/DocCreatorMenu/DocCreatorMenu.tsx index 0c5ae58a3..6d8d810aa 100644 --- a/src/client/views/nodes/DataVizBox/DocCreatorMenu/DocCreatorMenu.tsx +++ b/src/client/views/nodes/DataVizBox/DocCreatorMenu/DocCreatorMenu.tsx @@ -74,7 +74,7 @@ export class DocCreatorMenu extends ObservableReactComponent<DocCreateMenuProps> // eslint-disable-next-line no-use-before-define static Instance: DocCreatorMenu; - private DEBUG_MODE: boolean = true; + private DEBUG_MODE: boolean = false; private _disposers: { [name: string]: IDisposer } = {}; private _ref: HTMLDivElement | null = null; private templateManager: TemplateManager; @@ -664,6 +664,7 @@ export class DocCreatorMenu extends ObservableReactComponent<DocCreateMenuProps> } else { this._dataViz?.updateColDefaults(); + console.log('field infos are: ', this.fieldsInfos) templates.push(...this.templateManager.getValidTemplates(this.fieldsInfos)); const assignments = await this.assignColsToFields(templates, this.fieldsInfos); |