diff --git a/note_kfet/static/js/base.js b/note_kfet/static/js/base.js
index 6473a037704576d756685a2546ecdd8cd7d85f54..9db1d958af099fcd1d7eefaa413dc41fb7fb7b50 100644
--- a/note_kfet/static/js/base.js
+++ b/note_kfet/static/js/base.js
@@ -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) {