diff options
author | bobzel <zzzman@gmail.com> | 2020-08-02 11:40:24 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-08-02 11:40:24 -0400 |
commit | 1486b398071b3e9d9ac84edc74404ebadb69f67c (patch) | |
tree | 0455527c7574c671f8d7f219560231384e7dd32f /src/client/views/collections/CollectionStackingView.tsx | |
parent | 63fd10d0940331d68a9ce58b4b77734b11e393f5 (diff) |
fixed runtime warnings. fixed color of title text of stacking and masonry views
Diffstat (limited to 'src/client/views/collections/CollectionStackingView.tsx')
-rw-r--r-- | src/client/views/collections/CollectionStackingView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionStackingView.tsx b/src/client/views/collections/CollectionStackingView.tsx index 0332b4bf2..312dd92f0 100644 --- a/src/client/views/collections/CollectionStackingView.tsx +++ b/src/client/views/collections/CollectionStackingView.tsx @@ -481,7 +481,7 @@ export class CollectionStackingView extends CollectionSubView(StackingDocument) })} onDrop={this.onExternalDrop.bind(this)} onContextMenu={this.onContextMenu} - onWheel={e => this.props.active() && e.stopPropagation()} > + onWheel={e => this.props.active(true) && e.stopPropagation()} > {this.renderedSections} {!this.showAddAGroup ? (null) : <div key={`${this.props.Document[Id]}-addGroup`} className="collectionStackingView-addGroupButton" |