summaryrefslogtreecommitdiff
path: root/js/PrefHelpers.js
diff options
context:
space:
mode:
authorsupahgreg <supahgreg@users.noreply.github.com>2025-10-14 23:26:19 +0000
committersupahgreg <supahgreg@users.noreply.github.com>2025-10-14 23:26:46 +0000
commit3ff3c605b4405dcd66c6ae978566664633a2f68e (patch)
tree2db559fdfada881be2bde4b2634d96fe4e57c145 /js/PrefHelpers.js
parentf85559735b794682057e5b8d3854373f4d10dbb9 (diff)
Remove 'App.find()', which was essentially an alias of 'document.querySelector()'.
Diffstat (limited to 'js/PrefHelpers.js')
-rw-r--r--js/PrefHelpers.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/PrefHelpers.js b/js/PrefHelpers.js
index f931630c8..0d8702bae 100644
--- a/js/PrefHelpers.js
+++ b/js/PrefHelpers.js
@@ -728,7 +728,7 @@ const Helpers = {
dialog.plugins_to_update.push(p.plugin);
const update_button = dijit.getEnclosingWidget(
- App.find(`*[data-update-btn-for-plugin="${p.plugin}"]`));
+ document.querySelector(`*[data-update-btn-for-plugin="${p.plugin}"]`));
if (update_button)
update_button.domNode.show();