diff options
author | Lauri Eskola <lauri.eskola@acquia.com> | 2022-01-17 18:08:33 +0200 |
---|---|---|
committer | Lauri Eskola <lauri.eskola@acquia.com> | 2022-01-17 18:08:33 +0200 |
commit | 68081082c0605192b76850d96ae8a058c256ecca (patch) | |
tree | 51c2b7ea3ef5c6e229a308e4a4922688372d83a8 /core/modules/system/js/system.modules.js | |
parent | 440bcc0551fd41ed2197808b38a1c42524993899 (diff) | |
download | drupal-68081082c0605192b76850d96ae8a058c256ecca.tar.gz drupal-68081082c0605192b76850d96ae8a058c256ecca.zip |
Issue #3239134 by hooroomoo, bnjmnm, yogeshmpawar, nod_, Theresa.Grannum, larowlan: Refactor (if feasible) uses of the jQuery val function to use VanillaJS
Diffstat (limited to 'core/modules/system/js/system.modules.js')
-rw-r--r-- | core/modules/system/js/system.modules.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/modules/system/js/system.modules.js b/core/modules/system/js/system.modules.js index e397b2c736e6..98f53c683bc8 100644 --- a/core/modules/system/js/system.modules.js +++ b/core/modules/system/js/system.modules.js @@ -27,7 +27,7 @@ } function filterModuleList(e) { - const query = $(e.target).val(); + const query = e.target.value; const re = new RegExp(`\\b${query}`, 'i'); function showModuleRow(index, row) { |