@ -431,6 +431,7 @@ export default (config = {}, opts = {}) => {
/**
* Store data to the current storage.
* This will reset the counter of changes (`editor.getDirtyCount()`).
* @param {Object} [options] Storage options.
* @returns {Object} Stored data.
* @example
@ -629,7 +629,7 @@ export default class EditorModel extends Model {
*/
async load(options) {
const result = await this.get('StorageManager').load(options);
this.skip(() => this.loadData(result));
this.loadData(result);
return result;
}