diff options
| author | Aubrey Li <Aubrey-Li> | 2021-09-15 14:41:24 -0400 | 
|---|---|---|
| committer | Aubrey Li <Aubrey-Li> | 2021-09-15 14:41:24 -0400 | 
| commit | eb63330e172935343767d0dcc7ffad9bfa1a75c4 (patch) | |
| tree | 031bf155df50200f9652e881aec18002bc9e399e /src/client/views/collections/CollectionDockingView.tsx | |
| parent | b7a88c6292c2e7bfffc3cdc4f7c7037922b3de25 (diff) | |
| parent | 8386ad690c10d5c76bbd1b4f85314514b7f11b55 (diff) | |
merge master into trails-aubrey
Diffstat (limited to 'src/client/views/collections/CollectionDockingView.tsx')
| -rw-r--r-- | src/client/views/collections/CollectionDockingView.tsx | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/client/views/collections/CollectionDockingView.tsx b/src/client/views/collections/CollectionDockingView.tsx index cae08e1f4..5325d5827 100644 --- a/src/client/views/collections/CollectionDockingView.tsx +++ b/src/client/views/collections/CollectionDockingView.tsx @@ -428,7 +428,7 @@ export class CollectionDockingView extends CollectionSubView(doc => doc) {                  const emptyPane = CurrentUserUtils.EmptyPane;                  emptyPane["dragFactory-count"] = NumCast(emptyPane["dragFactory-count"]) + 1;                  const docToAdd = Docs.Create.FreeformDocument([], { -                    _width: this.props.PanelWidth(), _height: this.props.PanelHeight(), _fitWidth: true, title: `Untitled Tab ${NumCast(emptyPane["dragFactory-count"])}`, +                    _width: this.props.PanelWidth(), _height: this.props.PanelHeight(), _backgroundGridShow: true, _fitWidth: true, title: `Untitled Tab ${NumCast(emptyPane["dragFactory-count"])}`,                  });                  this.props.Document.isShared && inheritParentAcls(this.props.Document, docToAdd);                  CollectionDockingView.AddSplit(docToAdd, "", stack); @@ -453,7 +453,7 @@ export class CollectionDockingView extends CollectionSubView(doc => doc) {                  const emptyPane = CurrentUserUtils.EmptyPane;                  emptyPane["dragFactory-count"] = NumCast(emptyPane["dragFactory-count"]) + 1;                  const docToAdd = Docs.Create.FreeformDocument([], { -                    _width: this.props.PanelWidth(), _height: this.props.PanelHeight(), _fitWidth: true, title: `Untitled Tab ${NumCast(emptyPane["dragFactory-count"])}` +                    _width: this.props.PanelWidth(), _height: this.props.PanelHeight(), _fitWidth: true, _backgroundGridShow: true, title: `Untitled Tab ${NumCast(emptyPane["dragFactory-count"])}`                  });                  this.props.Document.isShared && inheritParentAcls(this.props.Document, docToAdd);                  CollectionDockingView.AddSplit(docToAdd, "", stack); | 
