diff --git a/build/media_source/system/js/multiselect.es6.js b/build/media_source/system/js/multiselect.es6.js index fb07448bf7f81..19757bf7ca1c2 100644 --- a/build/media_source/system/js/multiselect.es6.js +++ b/build/media_source/system/js/multiselect.es6.js @@ -47,7 +47,7 @@ class JMultiSelect { // Handle click on a row onRowClick({ target, shiftKey }) { // Do not interfere with links, buttons, inputs and other interactive elements - if (target.closest('a, button, input, select, textarea, details, dialog, audio, video')) { + if (!target.matches(this.boxSelector) && target.closest('a, button, input, select, textarea, details, dialog, audio, video')) { return; }