diff options
author | bobzel <zzzman@gmail.com> | 2022-10-17 19:07:32 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2022-10-17 19:07:32 -0400 |
commit | b772fb95bb2f980f91da44d1442f52c4fb0b6eac (patch) | |
tree | 344a800d6625d330d47ceb6e2197db35dbe6c723 /src/client/views/StyleProvider.tsx | |
parent | a26f7793c7626da5551774ac9911db1da34affec (diff) |
added rotation around an arbitrary point to doc decos. fixed show title for func plots and for shared docs in novice mode.
Diffstat (limited to 'src/client/views/StyleProvider.tsx')
-rw-r--r-- | src/client/views/StyleProvider.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/StyleProvider.tsx b/src/client/views/StyleProvider.tsx index 8b256923a..aadcd7169 100644 --- a/src/client/views/StyleProvider.tsx +++ b/src/client/views/StyleProvider.tsx @@ -131,7 +131,7 @@ export function DefaultStyleProvider(doc: Opt<Doc>, props: Opt<DocumentViewProps StrCast( doc._showTitle, props?.showTitle?.() || - (!Doc.IsSystem(doc) && [DocumentType.COL, DocumentType.LABEL, DocumentType.RTF, DocumentType.IMG, DocumentType.VID].includes(doc.type as any) + (!Doc.IsSystem(doc) && [DocumentType.COL, DocumentType.FUNCPLOT, DocumentType.LABEL, DocumentType.RTF, DocumentType.IMG, DocumentType.VID].includes(doc.type as any) ? doc.author === Doc.CurrentUserEmail ? StrCast(Doc.UserDoc().showTitle) : remoteDocHeader |