Skip to content

Commit

Permalink
Merge pull request #13292 from ckeditor/ck/13290-document-list-reconv…
Browse files Browse the repository at this point in the history
…ersion-priority

Other (list): Raise list item reconversion priority to `'high'`. Closes #13290.
  • Loading branch information
scofalik committed Jan 17, 2023
2 parents eae6ea9 + 9d903c9 commit ca7d672
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,8 @@ export default class DocumentListEditing extends Plugin {
this.listenTo<DocumentChangeEvent>(
model.document,
'change:data',
reconvertItemsOnDataChange( model, editor.editing, attributeNames, this )
reconvertItemsOnDataChange( model, editor.editing, attributeNames, this ),
{ priority: 'high' }
);

// For LI verify if an ID of the attribute element is correct.
Expand Down

0 comments on commit ca7d672

Please sign in to comment.