diff options
| author | bobzel <zzzman@gmail.com> | 2022-04-12 10:54:28 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2022-04-12 10:54:28 -0400 |
| commit | fd58a5f8598815ab1ab3893e60973654a59a52c1 (patch) | |
| tree | ed5ff5e3f8179760a8bfc813f30ca3b2625a1c55 /src/client/views/nodes/formattedText | |
| parent | 064708ec835e873c016af78ccf44578a6cfc9cba (diff) | |
cleaned up errors/warnings. fixed dragging to turn off pointer events on whatever's being dragged.
Diffstat (limited to 'src/client/views/nodes/formattedText')
| -rw-r--r-- | src/client/views/nodes/formattedText/FormattedTextBox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/formattedText/FormattedTextBox.tsx b/src/client/views/nodes/formattedText/FormattedTextBox.tsx index ec88b8d1d..b6713d878 100644 --- a/src/client/views/nodes/formattedText/FormattedTextBox.tsx +++ b/src/client/views/nodes/formattedText/FormattedTextBox.tsx @@ -364,7 +364,7 @@ export class FormattedTextBox extends ViewBoxAnnotatableComponent<(FieldViewProp } updateTitle = () => { - const title = StrCast(this.dataDoc.title) + const title = StrCast(this.dataDoc.title); if (!this.props.dontRegisterView && // (this.props.Document.isTemplateForField === "text" || !this.props.Document.isTemplateForField) && // only update the title if the data document's data field is changing (title.startsWith("-") || title.startsWith("@")) && this._editorView && !this.dataDoc["title-custom"] && (Doc.LayoutFieldKey(this.rootDoc) === this.fieldKey || this.fieldKey === "text")) { |
