From 657292733dce557d2c71c2d5b336751b590b1828 Mon Sep 17 00:00:00 2001 From: toasted-nutbread Date: Sat, 13 Nov 2021 09:29:58 -0500 Subject: [PATCH] Fix search page not being cleared properly (#2005) --- ext/js/display/display.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/js/display/display.js b/ext/js/display/display.js index ba7ebd91..caa1ce10 100644 --- a/ext/js/display/display.js +++ b/ext/js/display/display.js @@ -552,7 +552,7 @@ class Display extends EventDispatcher { // Prepare const urlSearchParams = new URLSearchParams(location.search); let type = urlSearchParams.get('type'); - if (type === null) { type = 'terms'; } + if (type === null && urlSearchParams.get('query') !== null) { type = 'terms'; } const fullVisible = urlSearchParams.get('full-visible'); this._queryParserVisibleOverride = (fullVisible === null ? null : (fullVisible !== 'false'));