diff --git a/api/js/etemplate/Et2Textbox/Et2Searchbox.ts b/api/js/etemplate/Et2Textbox/Et2Searchbox.ts index 1091607462..a172c3664f 100644 --- a/api/js/etemplate/Et2Textbox/Et2Searchbox.ts +++ b/api/js/etemplate/Et2Textbox/Et2Searchbox.ts @@ -61,6 +61,9 @@ export class Et2Searchbox extends Et2Textbox { event.preventDefault(); + // Stop from bubbling; enter in search is just for here. + event.stopPropagation(); + this._oldChange(event); } }