diff --git a/src/domain_abstract/model/Styleable.js b/src/domain_abstract/model/Styleable.js index 9b69617b5..301aa0dd3 100644 --- a/src/domain_abstract/model/Styleable.js +++ b/src/domain_abstract/model/Styleable.js @@ -42,6 +42,8 @@ export default { const propNew = { ...prop }; this.set('style', propNew, opts); const diff = shallowDiff(propOrig, propNew); + // Delete the property used for partial updates + delete diff.__p; keys(diff).forEach(pr => { const em = this.em; if (opts.noEvent) return;