diff options
author | bobzel <zzzman@gmail.com> | 2024-04-17 11:56:15 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2024-04-17 11:56:15 -0400 |
commit | d444d05ebe5eb0d72070ba21e1ae5935930b749f (patch) | |
tree | b89b6bb7b116ad685f71ca8a8a137b9d292dac83 /src | |
parent | 8925cc306bd7ee9a044a3fb2bc19dbb09c495515 (diff) |
reverted fix for replacing placeholder text in a new typed note -- breaks switching from one fieldKey to another
Diffstat (limited to 'src')
-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 5c59f7f60..c2f3a6e4b 100644 --- a/src/client/views/nodes/formattedText/FormattedTextBox.tsx +++ b/src/client/views/nodes/formattedText/FormattedTextBox.tsx @@ -1255,7 +1255,7 @@ export class FormattedTextBox extends ViewBoxAnnotatableComponent<FormattedTextB return !whichData ? undefined : { data: RTFCast(whichData), str: Field.toString(DocCast(whichData) ?? StrCast(whichData)) }; }, incomingValue => { - if (this._editorView && this._applyingChange !== this.fieldKey && incomingValue?.data !== this.dataDoc[this.fieldKey]) { + if (this._editorView && this._applyingChange !== this.fieldKey) { if (incomingValue?.data) { const updatedState = JSON.parse(incomingValue.data.Data); if (JSON.stringify(this._editorView.state.toJSON()) !== JSON.stringify(updatedState)) { |