Skip to content

Commit

Permalink
bug(case_contact): fixed the order of case contacts
Browse files Browse the repository at this point in the history
  • Loading branch information
Raushan Kumar Raman committed Dec 26, 2024
1 parent f701a4e commit 1ca4ea9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions app/javascript/src/case_contact.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ async function fireSwalFollowupAlert () {
})
}

$(document).on('turbo:load', function() {
$('.filter-form').on('change', '.filter-input', function() {
$(this).closest('form').submit();
});
});
$(document).on('turbo:load', function () {
$('.filter-form').on('change', '.filter-input', function () {
$(this).closest('form').submit()
})
})

$(() => { // JQuery's callback for the DOM loading
$('[data-toggle="tooltip"]').tooltip()
Expand Down

0 comments on commit 1ca4ea9

Please sign in to comment.