diff options
| author | supahgreg <supahgreg@users.noreply.github.com> | 2025-10-12 21:02:39 +0000 |
|---|---|---|
| committer | supahgreg <supahgreg@users.noreply.github.com> | 2025-10-12 21:34:29 +0000 |
| commit | 39182a76e4070d3b92af10bf609fef8151bce6e4 (patch) | |
| tree | 806c6e1b1ab421a2631f5e9062a8988480f8ba31 /js/PrefLabelTree.js | |
| parent | 1299d632bdc8b676d3fc2114a1788a2f8f63597c (diff) | |
Address ESLint rule 'eqeqeq'.
https://eslint.org/docs/latest/rules/eqeqeq
Diffstat (limited to 'js/PrefLabelTree.js')
| -rw-r--r-- | js/PrefLabelTree.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/PrefLabelTree.js b/js/PrefLabelTree.js index 582e5a9b9..c73a3ac46 100644 --- a/js/PrefLabelTree.js +++ b/js/PrefLabelTree.js @@ -19,7 +19,7 @@ define(["dojo/_base/declare", "dojo/dom-construct", "lib/CheckBoxTree", "dijit/f const type = this.model.store.getValue(args.item, 'type'); //const bare_id = this.model.store.getValue(args.item, 'bare_id'); - if (type == 'label') { + if (type === 'label') { const label = dojo.doc.createElement('i'); //const fg_color = args.item.fg_color[0]; const bg_color = String(args.item.bg_color); |