diff options
| author | bobzel <zzzman@gmail.com> | 2021-03-19 13:54:45 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2021-03-19 13:54:45 -0400 |
| commit | 3e2709a68e32650074e2bbc9af89fa0d66536d77 (patch) | |
| tree | 489e8df395f8dc7e061f7ae52fb130f7c112dc7f /src/client/views/collections/CollectionCarouselView.tsx | |
| parent | e8ef90478cec13d45de0fe42e32a594e2630c47d (diff) | |
simplified chromeStatus to chromeHidden. fixed presBox item widths. fixed colorBox layout.
Diffstat (limited to 'src/client/views/collections/CollectionCarouselView.tsx')
| -rw-r--r-- | src/client/views/collections/CollectionCarouselView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionCarouselView.tsx b/src/client/views/collections/CollectionCarouselView.tsx index 512328835..f400ac5a2 100644 --- a/src/client/views/collections/CollectionCarouselView.tsx +++ b/src/client/views/collections/CollectionCarouselView.tsx @@ -109,7 +109,7 @@ export class CollectionCarouselView extends CollectionSubView(CarouselDocument) render() { return <div className="collectionCarouselView-outer" onClick={this.onClick} onPointerDown={this.onPointerDown} ref={this.createDashEventsTarget}> {this.content} - {this.props.Document._chromeStatus !== "replaced" ? this.buttons : (null)} + {!this.props.Document._chromeHidden ? (null) : this.buttons} </div>; } }
\ No newline at end of file |
