Fix autocompletion not showing up in rare cases

This commit is contained in:
Alexandre Iooss 2020-08-10 14:45:44 +02:00
parent f74b19b2af
commit eadc8fa193
1 changed files with 3 additions and 2 deletions

View File

@ -213,15 +213,16 @@ function autoCompleteNote(field_id, note_list_id, notes, notes_display, alias_pr
fallbackPlacement: 'clockwise'
});
let old_pattern = null;
// Clear search on click
field.click(function () {
field.tooltip('hide');
field.removeClass('is-invalid');
field.val("");
old_pattern = "";
});
let old_pattern = null;
// When the user type "Enter", the first alias is clicked
field.keypress(function (event) {
if (event.originalEvent.charCode === 13 && notes.length > 0) {