aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/DocumentView.tsx
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2022-09-22 14:22:26 -0400
committerbobzel <zzzman@gmail.com>2022-09-22 14:22:26 -0400
commita2275a7477bbf02c4ef6c1f388bb08083528f5f1 (patch)
treefe271511c89a3a14e42682177f96ecef5298cbb6 /src/client/views/nodes/DocumentView.tsx
parent2030dda471e1b7a0bbf16af993c496b4b9d8983a (diff)
parent4ac1b5cd93acb50e3656f00e9fdd93315dcbd6f1 (diff)
Merge branch 'master' of https://github.com/brown-dash/Dash-Web
Diffstat (limited to 'src/client/views/nodes/DocumentView.tsx')
-rw-r--r--src/client/views/nodes/DocumentView.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/DocumentView.tsx b/src/client/views/nodes/DocumentView.tsx
index 0e485e2f9..f18fd8024 100644
--- a/src/client/views/nodes/DocumentView.tsx
+++ b/src/client/views/nodes/DocumentView.tsx
@@ -1259,7 +1259,7 @@ export class DocumentViewInternal extends DocComponent<DocumentViewInternalProps
SharingManager.Instance.users.find(users => users.user.email === this.dataDoc.author)?.sharingDoc.userColor,
Doc.UserDoc().showTitle && [DocumentType.RTF, DocumentType.COL].includes(this.rootDoc.type as any) ? StrCast(Doc.SharingDoc().userColor) : 'rgba(0,0,0,0.4)'
);
- const titleView = !showTitle ? null : (
+ const titleView = !showTitle || Doc.noviceMode ? null : (
<div
className={`documentView-titleWrapper${showTitleHover ? '-hover' : ''}`}
key="title"