From 01e1133219f5933929905b117c447635f5ad9a50 Mon Sep 17 00:00:00 2001 From: Jermolene Date: Mon, 10 Mar 2014 18:15:00 +0000 Subject: [PATCH] Fix bug where count widget wasn't being updated correctly --- core/modules/widgets/count.js | 1 + 1 file changed, 1 insertion(+) diff --git a/core/modules/widgets/count.js b/core/modules/widgets/count.js index 1be0aa5e1..f5d71eb9b 100644 --- a/core/modules/widgets/count.js +++ b/core/modules/widgets/count.js @@ -54,6 +54,7 @@ Selectively refreshes the widget if needed. Returns true if the widget or any of */ CountWidget.prototype.refresh = function(changedTiddlers) { // Re-execute the filter to get the count + this.computeAttributes(); var oldCount = this.currentCount; this.execute(); if(this.currentCount !== oldCount) {