diff options
| author | bobzel <zzzman@gmail.com> | 2022-05-20 16:35:24 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2022-05-20 16:35:24 -0400 |
| commit | 366cd5f3799a78c297c9a0dc31eb0bd8c0e4c4bd (patch) | |
| tree | 2d6009c3b566010419fd98c5d2ff15c9ac06142f /src/client/views/collections/collectionLinear | |
| parent | 5dd7905530dbfbac3318e55fc625fe46427e23c4 (diff) | |
some cleanup of currentUserUtils. css fixes for fonticon boxes with labels
Diffstat (limited to 'src/client/views/collections/collectionLinear')
| -rw-r--r-- | src/client/views/collections/collectionLinear/CollectionLinearView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/collectionLinear/CollectionLinearView.tsx b/src/client/views/collections/collectionLinear/CollectionLinearView.tsx index bec582dcd..c0a33a5e0 100644 --- a/src/client/views/collections/collectionLinear/CollectionLinearView.tsx +++ b/src/client/views/collections/collectionLinear/CollectionLinearView.tsx @@ -151,7 +151,7 @@ export class CollectionLinearView extends CollectionSubView() { removeDocument={this.props.removeDocument} ScreenToLocalTransform={docXf} PanelWidth={nested ? doc[WidthSym] : this.dimension} - PanelHeight={nested ? doc[HeightSym] : this.dimension} + PanelHeight={nested || doc._height ? doc[HeightSym] : this.dimension} renderDepth={this.props.renderDepth + 1} focus={emptyFunction} styleProvider={this.props.styleProvider} |
