Et2Searchbox: Consume enter keypress in search to avoid triggering anything else. Just start the search.

This commit is contained in:
nathan 2022-12-02 09:54:35 -07:00
parent 8717033009
commit 2f81a55607

View File

@ -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);
}
}