diff options
author | bobzel <zzzman@gmail.com> | 2022-09-14 11:34:19 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2022-09-14 11:34:19 -0400 |
commit | 2fb2b57759f6d2c48fc0e7c89b4a3b25694a245c (patch) | |
tree | 26d2be02c0b5f7ba43245bdc9fe712d9f9b9561d /src/client/views/nodes/DocumentView.tsx | |
parent | 65026fdb919132f6046b45fc3b0490df2e5ad2fe (diff) |
made dashboard button hidden since we have dashboard view now. put viewType 'docking' on proto so that all aliases will get it when nesting docking views.
Diffstat (limited to 'src/client/views/nodes/DocumentView.tsx')
-rw-r--r-- | src/client/views/nodes/DocumentView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/DocumentView.tsx b/src/client/views/nodes/DocumentView.tsx index e628c2e44..cab0e744f 100644 --- a/src/client/views/nodes/DocumentView.tsx +++ b/src/client/views/nodes/DocumentView.tsx @@ -1000,7 +1000,7 @@ export class DocumentViewInternal extends DocComponent<DocumentViewInternalProps LightboxView.LightboxDoc !== this.rootDoc && this.thumb && !Doc.AreProtosEqual(DocumentLinksButton.StartLink, this.rootDoc) && - !Doc.isBrushedHighlightedDegree(this.props.Document) && + (!Doc.isBrushedHighlightedDegree(this.props.Document) || this.rootDoc._viewType === CollectionViewType.Docking) && !this._componentView?.isAnyChildContentActive?.() ? true : false; |