diff --git a/src/pyj/book_list/search.pyj b/src/pyj/book_list/search.pyj index f867bd484c..d1acc41392 100644 --- a/src/pyj/book_list/search.pyj +++ b/src/pyj/book_list/search.pyj @@ -39,6 +39,7 @@ class SearchPanel: )) search_container.firstChild.firstChild.addEventListener('keypress', def(event): if event.keyCode == 13: + self.container.querySelector('button').focus() self.execute_search() event.preventDefault(), event.stopPropagation() )