diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2022-08-20 11:31:50 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-20 11:31:50 -0400 |
commit | 5c267f4bb772bb6c67576f2b40234a356c040550 (patch) | |
tree | 47ed99f483dcbb558f1976551cb511775a241001 /ext/js/display/search-display-controller.js | |
parent | 9436928e3d89110d042e39067f5591c48e8500ea (diff) |
Profile index fixes (#2207)
* Update settings controller to consistently initialize
* Allow profile index to be reset if an error occurs
* Update message handler to be async
* Fix error when deleting the current profile
Diffstat (limited to 'ext/js/display/search-display-controller.js')
-rw-r--r-- | ext/js/display/search-display-controller.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/js/display/search-display-controller.js b/ext/js/display/search-display-controller.js index cd35481d..6131e0db 100644 --- a/ext/js/display/search-display-controller.js +++ b/ext/js/display/search-display-controller.js @@ -135,7 +135,7 @@ class SearchDisplayController { await this._display.updateOptions(); const query = this._queryInput.value; if (query) { - this._display.searchLast(); + this._display.searchLast(false); } } |