From 1fd0fb03fae255629440920a6768b29d355b672a Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Mon, 23 Feb 2026 18:46:09 +0200 Subject: [PATCH] chore(ckeditor): remove unnecessary priority See https://github.com/ckeditor/ckeditor5/pull/19115#issuecomment-3944720307 --- packages/ckeditor5/src/plugins/indent_block_shortcut.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/ckeditor5/src/plugins/indent_block_shortcut.ts b/packages/ckeditor5/src/plugins/indent_block_shortcut.ts index 813922dcec..281710e499 100644 --- a/packages/ckeditor5/src/plugins/indent_block_shortcut.ts +++ b/packages/ckeditor5/src/plugins/indent_block_shortcut.ts @@ -21,7 +21,6 @@ export default class IndentBlockShortcutPlugin extends Plugin { command.execute(); } }, { - priority: "highest", context: node => isWidget( node ) || node.is( 'editableElement' ), }); }