diff options
author | geireann <geireann.lindfield@gmail.com> | 2021-08-17 21:55:48 -0400 |
---|---|---|
committer | geireann <geireann.lindfield@gmail.com> | 2021-08-17 21:55:48 -0400 |
commit | a37a3a65cb314caaae41492c38d98a58c88e8a15 (patch) | |
tree | de4fe5654fbcec6bb59108ce86114fe807b5baa1 /src/client/views/collections/CollectionSchemaView.tsx | |
parent | c4b3d5943b83a001fff0b967f9b155ed07328a42 (diff) | |
parent | cf2ab7fe45c57720eeeeff64ed6f5b2b5d8fa40d (diff) |
Merge branch 'linking-anh' of https://github.com/brown-dash/Dash-Web into linking-anh
Diffstat (limited to 'src/client/views/collections/CollectionSchemaView.tsx')
-rw-r--r-- | src/client/views/collections/CollectionSchemaView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionSchemaView.tsx b/src/client/views/collections/CollectionSchemaView.tsx index 380f82813..1efea96be 100644 --- a/src/client/views/collections/CollectionSchemaView.tsx +++ b/src/client/views/collections/CollectionSchemaView.tsx @@ -556,7 +556,7 @@ export class CollectionSchemaView extends CollectionSubView(doc => doc) { style={{ overflow: this.props.scrollOverflow === true ? "scroll" : undefined, backgroundColor: "white", pointerEvents: this.props.Document._searchDoc !== undefined && !this.props.isContentActive() && !SnappingManager.GetIsDragging() ? "none" : undefined, - width: name === "collectionSchemaView-searchContainer" ? "auto" : this.props.PanelWidth() || "100%", height: this.props.PanelHeight() || "100%", position: "relative", + width: this.props.PanelWidth() || "100%", height: this.props.PanelHeight() || "100%", position: "relative", }} > <div className="collectionSchemaView-tableContainer" style={{ width: `calc(100% - ${this.previewWidth()}px)` }} |