Merge "Fix deprecated use of 'jQuery.fn.blur()' shorthand event"

This commit is contained in:
Zuul 2023-04-26 16:55:38 +00:00 committed by Gerrit Code Review
commit ce6d55ddcf
1 changed files with 1 additions and 1 deletions

View File

@ -486,7 +486,7 @@ horizon.membership = {
// unfocus filter fields
if (step_id.indexOf('update') === 0) {
$form.find("#" + step_id + " input").blur();
$form.find("#" + step_id + " input").trigger('blur');
}
// prevent filter inputs from submitting form on 'enter'