Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kbecker42 committed Sep 19, 2024
1 parent d6f9da1 commit e1dce95
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions templates/projects/assign_users.html
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,11 @@

setupTooltips();

$('#assign_users .search-input').on('keyup paste cut delete', function() {
$('#assign_users .search-input').on('keyup paste cut', function() {
// Initialize tooltips after entering a search term, after the menu is rebuilt.
setupTooltips();
setTimeout(() => {
setupTooltips();
}, 0);
});
});
</script>
Expand Down

0 comments on commit e1dce95

Please sign in to comment.