summaryrefslogtreecommitdiff
path: root/js/PrefLabelTree.js
diff options
context:
space:
mode:
authorsupahgreg <supahgreg@users.noreply.github.com>2025-10-12 22:26:51 +0000
committersupahgreg <supahgreg@users.noreply.github.com>2025-10-12 22:27:18 +0000
commitcde120b3d730dfb56fa59759bb9a7369584f551c (patch)
treec1c7ec460b87e0551bdf4fe00ca98bac565601f2 /js/PrefLabelTree.js
parent7211d3468456bc770f227432e98be13bf7d7d42a (diff)
Clean up unnecessary eslint-disable directives (per ESLint).
Diffstat (limited to 'js/PrefLabelTree.js')
-rw-r--r--js/PrefLabelTree.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/js/PrefLabelTree.js b/js/PrefLabelTree.js
index 1859906ee..a4540deec 100644
--- a/js/PrefLabelTree.js
+++ b/js/PrefLabelTree.js
@@ -1,4 +1,3 @@
-/* eslint-disable prefer-rest-params */
/* global __, define, lib, xhr, Notify, fox, App */
define(["dojo/_base/declare", "dojo/dom-construct", "lib/CheckBoxTree", "dijit/form/DropDownButton"], function (declare, domConstruct) {
@@ -40,7 +39,6 @@ define(["dojo/_base/declare", "dojo/dom-construct", "lib/CheckBoxTree", "dijit/f
return tnode;
},
getIconClass: function (item, opened) {
- // eslint-disable-next-line no-nested-ternary
return (!item || this.model.mayHaveChildren(item)) ? (opened ? "dijitFolderOpened" : "dijitFolderClosed") : "invisible";
},
getSelectedLabels: function() {