You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Operations which does not change the document (are applied on detached trees) does not increment document version. It means that multiple operations may have the same base version, what is not correct.
The proper way would be to set null as the base version for operations which works on detached trees.
The text was updated successfully, but these errors were encountered:
Other: Operations that do not operate on a document should have `baseVersion` set to `null`. Closes #1211.
Fixed: Markers again are properly converted in `engine.controller.DataController`.
Fixed: Markers are cleared now before an operation is applied to `model.Document` tree to fix scenarios where marker range could not be converted to the view after the model changed.
mlewand
transferred this issue from ckeditor/ckeditor5-engine
Oct 9, 2019
Operations which does not change the document (are applied on detached trees) does not increment document version. It means that multiple operations may have the same base version, what is not correct.
The proper way would be to set
null
as the base version for operations which works on detached trees.The text was updated successfully, but these errors were encountered: