diff options
| author | supahgreg <supahgreg@users.noreply.github.com> | 2025-10-14 23:22:00 +0000 |
|---|---|---|
| committer | supahgreg <supahgreg@users.noreply.github.com> | 2025-10-14 23:23:01 +0000 |
| commit | f85559735b794682057e5b8d3854373f4d10dbb9 (patch) | |
| tree | a4622a6d572deca239cb562f0f2d78ad6e2c1565 /js/PrefLabelTree.js | |
| parent | 6bd52b28c201c2afb43397c1413000d47563da0b (diff) | |
Remove 'App.byId()', which was essentially an alias of 'document.getElementById()'.
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 a4540deec..f5d71020f 100644 --- a/js/PrefLabelTree.js +++ b/js/PrefLabelTree.js @@ -82,7 +82,7 @@ define(["dojo/_base/declare", "dojo/dom-construct", "lib/CheckBoxTree", "dijit/f color = bg; } - const e = App.byId(`icon-label-${id}`); + const e = document.getElementById(`icon-label-${id}`); if (e) { if (bg) e.style.color = bg; |