diff options
author | Bob Zeleznik <zzzman@gmail.com> | 2020-07-12 23:34:34 -0400 |
---|---|---|
committer | Bob Zeleznik <zzzman@gmail.com> | 2020-07-12 23:34:34 -0400 |
commit | 0b0183de3a13649819983203e2aba1dc6b84fdb1 (patch) | |
tree | c83903e1a779d1c7cbdd50a2aa80bf6d137ec303 /src/client/views/nodes/DocumentView.tsx | |
parent | 9f1ad8a6e9c1a2071b20907af1b2c8d5adc1a65c (diff) |
fixed updating RichTextMenu with proper values for fontFamily, size, bullet, and alignment
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 2e492a865..6ef976ceb 100644 --- a/src/client/views/nodes/DocumentView.tsx +++ b/src/client/views/nodes/DocumentView.tsx @@ -1247,7 +1247,7 @@ export class DocumentView extends DocComponent<DocumentViewProps, Document>(Docu background: finalColor, opacity: finalOpacity, fontFamily: StrCast(this.Document._fontFamily, "inherit"), - fontSize: Cast(this.Document._fontSize, "number", null) + fontSize: Cast(this.Document._fontSize, "string", null) }}> {this.onClickHandler && this.props.ContainingCollectionView?.props.Document._viewType === CollectionViewType.Time ? <> {this.innards} |