diff options
author | bobzel <zzzman@gmail.com> | 2023-04-17 11:40:45 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2023-04-17 11:40:45 -0400 |
commit | e45cf590cf20d3af2bc07e4af78d69470ebfe665 (patch) | |
tree | 54cc6e29b30d04d1b921fc525b40d4ac29adafc4 /src | |
parent | 4c803d0556aec2e06387a86cc84069577bebd5c9 (diff) |
updated to master
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 8d6659f07..37ede931d 100644 --- a/src/client/views/nodes/formattedText/FormattedTextBox.tsx +++ b/src/client/views/nodes/formattedText/FormattedTextBox.tsx @@ -911,7 +911,7 @@ export class FormattedTextBox extends ViewBoxAnnotatableComponent<FieldViewProps this.props.addDocument?.(newDoc); } // Create link between prompt and image - DocUtils.MakeLink({ doc: this.rootDoc }, { doc: newDoc }, 'Image Prompt'); + DocUtils.MakeLink(this.rootDoc, newDoc, { linkRelationship: 'Image Prompt' }); } } catch (err) { console.log(err); |