Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/Menu/ActionInsertLink.vue
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ export default {
this.$editor.chain().unsetLink().focus().run()
},
linkPicker() {
getLinkWithPicker()
getLinkWithPicker(null, true)
.then(link => {
this.$editor
.chain()
Expand Down
2 changes: 1 addition & 1 deletion src/components/Suggestion/LinkPicker/suggestions.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import { searchProvider, getLinkWithPicker } from '@nextcloud/vue-richtext'
export default () => createSuggestions({
listComponent: LinkPickerList,
command: ({ editor, range, props }) => {
getLinkWithPicker(props.providerId)
getLinkWithPicker(props.providerId, true)
.then(link => {
editor
.chain()
Expand Down