diff options
author | bobzel <zzzman@gmail.com> | 2024-09-19 20:41:19 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2024-09-19 20:41:19 -0400 |
commit | 77e087625bd02cfa170e3f1903b0a744b81380ce (patch) | |
tree | 85f1c5855fb68c7ab456a03f60e1c03ae0940b2b /src/client/views/nodes/formattedText/FormattedTextBox.tsx | |
parent | 4c1933b67dad98c7e5e7f77b0bebc8ae2a612bca (diff) | |
parent | cf7216aec2fd61bc7de43240586532b5d54e7d8b (diff) |
Merge branch 'master' into zach-starter
Diffstat (limited to 'src/client/views/nodes/formattedText/FormattedTextBox.tsx')
-rw-r--r-- | src/client/views/nodes/formattedText/FormattedTextBox.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/views/nodes/formattedText/FormattedTextBox.tsx b/src/client/views/nodes/formattedText/FormattedTextBox.tsx index 343e255dc..1ccc6e502 100644 --- a/src/client/views/nodes/formattedText/FormattedTextBox.tsx +++ b/src/client/views/nodes/formattedText/FormattedTextBox.tsx @@ -275,6 +275,7 @@ export class FormattedTextBox extends ViewBoxAnnotatableComponent<FormattedTextB ele.append(contents); } this._selectionHTML = ele?.innerHTML; + // eslint-disable-next-line @typescript-eslint/no-unused-vars } catch (e) { /* empty */ } @@ -561,7 +562,7 @@ export class FormattedTextBox extends ViewBoxAnnotatableComponent<FormattedTextB const draggedDoc = dragData.droppedDocuments.lastElement(); let added: Opt<boolean>; const dropAction = dragData.dropAction || dragData.userDropAction; - if ([AclEdit, AclAdmin, AclSelfEdit].includes(effectiveAcl)) { + if ([AclEdit, AclAdmin, AclSelfEdit].includes(effectiveAcl) && !dragData.draggedDocuments.includes(this.Document)) { // replace text contents when dragging with Alt if (de.altKey) { const fieldKey = Doc.LayoutFieldKey(draggedDoc); |