diff options
| author | bobzel <zzzman@gmail.com> | 2025-05-20 12:26:36 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2025-05-20 12:26:36 -0400 |
| commit | fdaecd254fe56c5dab5b45258d6595ff9c5bcf42 (patch) | |
| tree | afebcfbf1d19180c80de3a811359e4dc17467a15 /src/client/views/collections/CollectionPivotView.tsx | |
| parent | 33b8f9d1b08f9073dc996c97b82ca6a21c1e10ec (diff) | |
fixed creating list of headers in stacking view when it doesn't exist. start of making fields dropdown more reactive.
Diffstat (limited to 'src/client/views/collections/CollectionPivotView.tsx')
| -rw-r--r-- | src/client/views/collections/CollectionPivotView.tsx | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/client/views/collections/CollectionPivotView.tsx b/src/client/views/collections/CollectionPivotView.tsx index 4736070c3..5487315f0 100644 --- a/src/client/views/collections/CollectionPivotView.tsx +++ b/src/client/views/collections/CollectionPivotView.tsx @@ -102,13 +102,7 @@ export class CollectionPivotView extends CollectionSubView() { <div className="collectionTimeView-pivot" style={{ width: this._props.PanelWidth(), height: '100%' }}> {this.contents} <div style={{ right: 0, top: 0, position: 'absolute' }}> - <FieldsDropdown - Doc={this.Document} - selectFunc={fieldKey => { - this.layoutDoc._pivotField = fieldKey; - }} - placeholder={StrCast(this.layoutDoc._pivotField)} - /> + <FieldsDropdown Doc={this.Document} isInactive={!this._props.isContentActive()} selectFunc={fieldKey => (this.layoutDoc._pivotField = fieldKey)} placeholder={StrCast(this.layoutDoc._pivotField)} /> </div> </div> ); |
