Skip to content

Commit

Permalink
Fix lints
Browse files Browse the repository at this point in the history
Signed-off-by: Tobias de Bruijn <[email protected]>
  • Loading branch information
TobiasDeBruijn committed Feb 22, 2024
1 parent 9725c5b commit c51209b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/javascript/src/admin/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ $(document).on("ready page:load turbolinks:load", function () {
});

$(window).on("keydown", (evt) => {
if($("input").is(":focus")) {
if ($("input").is(":focus")) {
// Cancel if any inputs are selected
return;
}
Expand Down
2 changes: 1 addition & 1 deletion app/javascript/src/admin/members.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ $(document).on("ready page:load turbolinks:load", function () {
setup_intl_tel_input();

$(window).on("keydown", (evt) => {
if($("input").is(":focus")) {
if ($("input").is(":focus")) {
// Cancel if any inputs are selected
return;
}
Expand Down

0 comments on commit c51209b

Please sign in to comment.