Fix typo in contribution-status helper

The wrong property name caused an exception when trying to remove the observer.
This commit is contained in:
2020-05-11 12:18:07 +02:00
parent 9a1f543921
commit 009caa53e5
+1 -1
View File
@@ -45,7 +45,7 @@ export default Helper.extend({
contribution.removeObserver('vetoed', this, this.triggerRecompute);
contribution.removeObserver('confirmedAt', this, this.triggerRecompute);
contribution.removeObserver('currentBlock', this, this.triggerRecompute);
contribution.removeObserver('hadPendingChanges', this, this.triggerRecompute);
contribution.removeObserver('hasPendingChanges', this, this.triggerRecompute);
};
},