Skip to content

Commit

Permalink
Merge pull request #5493 from nextcloud/backport/5490/stable27
Browse files Browse the repository at this point in the history
[stable27] fix(LinkPicker): Don't open link picker inside code blocks
  • Loading branch information
mejo- committed Mar 15, 2024
2 parents f813125 + dec08df commit a245615
Show file tree
Hide file tree
Showing 13 changed files with 22 additions and 18 deletions.
4 changes: 2 additions & 2 deletions js/editor.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/editor.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions js/text-editors.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/text-editors.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions js/text-files.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/text-files.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions js/text-public.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/text-public.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions js/text-text.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/text-text.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions js/text-viewer.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/text-viewer.js.map

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions src/extensions/LinkPicker.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ export default Extension.create({
char: '/',
allowedPrefixes: [' '],
pluginKey: LinkPickerPluginKey,
allow: ({ state, range }) => {
const $from = state.doc.resolve(range.from)
return $from.parent.type.name !== 'codeBlock'
},
...suggestions(),
},
}
Expand Down

0 comments on commit a245615

Please sign in to comment.