diff options
author | bobzel <zzzman@gmail.com> | 2024-10-15 13:25:47 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2024-10-15 13:25:47 -0400 |
commit | 87d2d1d0305683a07166e44cfbcabfc94ff2069b (patch) | |
tree | 12d529d92d378870f8e1a66c534680fa0e28f3aa /src/client/views/nodes/DataVizBox/DocCreatorMenu.tsx | |
parent | 63d1731bb675b71c20c0e460cf50ef9d674a6c08 (diff) | |
parent | 29b83f023442c313ca5cf95f70f6430f101060e6 (diff) |
Merge branch 'master' into alyssa-starter
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: ''}})) |