We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24f7bf3 commit 3f63bebCopy full SHA for 3f63beb
addon/mixin.js
@@ -98,7 +98,7 @@ export default Mixin.create({
98
},
99
100
discardBufferedChanges(onlyTheseKeys) {
101
- const buffer = get(this, 'buffer');
+ const { buffer, content } = getProperties(this, ['buffer', 'content']);
102
103
this.initializeBuffer(onlyTheseKeys);
104
@@ -107,7 +107,7 @@ export default Mixin.create({
107
return;
108
}
109
110
- notifyPropertyChange(this, key);
+ notifyPropertyChange(content, key);
111
});
112
113
if (empty(get(this, 'buffer'))) {
0 commit comments