diff options
Diffstat (limited to 'ext/js/display/display-generator.js')
-rw-r--r-- | ext/js/display/display-generator.js | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/ext/js/display/display-generator.js b/ext/js/display/display-generator.js index d02e2d9c..9b451995 100644 --- a/ext/js/display/display-generator.js +++ b/ext/js/display/display-generator.js @@ -413,15 +413,16 @@ class DisplayGenerator { } _createTag(details) { + const {notes, name, category, redundant} = details; const node = this._templates.instantiate('tag'); - const inner = node.querySelector('.tag-inner'); + const inner = node.querySelector('.tag-label-content'); - node.title = details.notes; - this._setTextContent(inner, details.name); - node.dataset.details = details.notes || details.name; - node.dataset.category = details.category; - if (details.redundant) { node.dataset.redundant = 'true'; } + node.title = notes; + this._setTextContent(inner, name); + node.dataset.details = notes || name; + node.dataset.category = category; + if (redundant) { node.dataset.redundant = 'true'; } return node; } |