From 009caa53e5678066ccc62818184c77e6b4a58ef9 Mon Sep 17 00:00:00 2001 From: Garret Alfert Date: Mon, 11 May 2020 12:18:07 +0200 Subject: [PATCH] Fix typo in contribution-status helper The wrong property name caused an exception when trying to remove the observer. --- app/helpers/contribution-status.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/helpers/contribution-status.js b/app/helpers/contribution-status.js index b9d9fd8..959aa72 100644 --- a/app/helpers/contribution-status.js +++ b/app/helpers/contribution-status.js @@ -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); }; },