diff options
author | bobzel <zzzman@gmail.com> | 2024-10-17 13:31:25 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2024-10-17 13:31:25 -0400 |
commit | 5e3f9d84da226e62ce109cc2c0b00ba76eb45189 (patch) | |
tree | 7516f80d96cb28088a49b1cba0edf7df78821c47 /src/client/views/nodes/DataVizBox/DocCreatorMenu.tsx | |
parent | 14f412611299fc350f13b6f96be913d59533cfb3 (diff) | |
parent | 4a9330e996b9117fb27560b9898b6fc1dbb78f96 (diff) |
Merge branch 'master' into ajs-before-executable
Diffstat (limited to 'src/client/views/nodes/DataVizBox/DocCreatorMenu.tsx')
-rw-r--r-- | src/client/views/nodes/DataVizBox/DocCreatorMenu.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/views/nodes/DataVizBox/DocCreatorMenu.tsx b/src/client/views/nodes/DataVizBox/DocCreatorMenu.tsx index 6c649bde3..16c016d6c 100644 --- a/src/client/views/nodes/DataVizBox/DocCreatorMenu.tsx +++ b/src/client/views/nodes/DataVizBox/DocCreatorMenu.tsx @@ -231,7 +231,8 @@ export class DocCreatorMenu extends ObservableReactComponent<FieldViewProps> { this._disposers.lightbox = reaction( () => LightboxView.LightboxDoc(), doc => { - doc ? this._shouldDisplay && this.closeMenu() : !this._shouldDisplay && this.openMenu(); + // NOTE: bcz; commented this out because the doc creator would appear everytime I close out of the lightbox + // doc ? this._shouldDisplay && this.closeMenu() : !this._shouldDisplay && this.openMenu(); } ); //this._disposers.fields = reaction(() => this._dataViz?.axes, cols => this._selectedCols = cols?.map(col => { return {title: col, type: '', desc: ''}})) |