From 2317085aaed6d5df5f8284201b6718286f602070 Mon Sep 17 00:00:00 2001 From: Khai Truong Date: Sun, 25 Aug 2024 23:06:05 +0700 Subject: [PATCH] refactor --- ext/js/display/search-display-controller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/js/display/search-display-controller.js b/ext/js/display/search-display-controller.js index c664fc849b..925f9e0533 100644 --- a/ext/js/display/search-display-controller.js +++ b/ext/js/display/search-display-controller.js @@ -295,7 +295,7 @@ export class SearchDisplayController { if (this._queryInput.value !== text) { this._queryInput.value = text; this._updateSearchHeight(true); - this._searchButton.click(); + this._search(true, 'new', true, null); } }