From 664225f6fd6e00f810cc26c45f0e1c28da9aeb4f Mon Sep 17 00:00:00 2001 From: Jermolene Date: Tue, 25 Oct 2016 15:34:20 +0100 Subject: [PATCH] Ensure list widget item title is used in getStateQualifier Resolves a longstanding problem where the same state qualifier is generated for every member of a list. Fixes #2628 --- core/modules/widgets/list.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/modules/widgets/list.js b/core/modules/widgets/list.js index f4981df33..21577774c 100755 --- a/core/modules/widgets/list.js +++ b/core/modules/widgets/list.js @@ -305,6 +305,8 @@ Compute the internal state of the widget ListItemWidget.prototype.execute = function() { // Set the current list item title this.setVariable(this.parseTreeNode.variableName,this.parseTreeNode.itemTitle); + // Make sure the item title is used by widget.getStateQualifier() + this.setVariable("transclusion","{" + this.parseTreeNode.itemTitle + "}"); // Construct the child widgets this.makeChildWidgets(); };