Fix typo in contribution-status helper
The wrong property name caused an exception when trying to remove the observer.
This commit is contained in:
@@ -45,7 +45,7 @@ export default Helper.extend({
|
|||||||
contribution.removeObserver('vetoed', this, this.triggerRecompute);
|
contribution.removeObserver('vetoed', this, this.triggerRecompute);
|
||||||
contribution.removeObserver('confirmedAt', this, this.triggerRecompute);
|
contribution.removeObserver('confirmedAt', this, this.triggerRecompute);
|
||||||
contribution.removeObserver('currentBlock', this, this.triggerRecompute);
|
contribution.removeObserver('currentBlock', this, this.triggerRecompute);
|
||||||
contribution.removeObserver('hadPendingChanges', this, this.triggerRecompute);
|
contribution.removeObserver('hasPendingChanges', this, this.triggerRecompute);
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user