From 6fad5a5594a65c026477afc430b5295b24055d04 Mon Sep 17 00:00:00 2001 From: Kout95 Date: Mon, 1 Jul 2024 09:09:01 +0200 Subject: [PATCH] feat: change displayTime to false by default --- frontend/src/search-count.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/search-count.ts b/frontend/src/search-count.ts index 12261c9f..8000828a 100644 --- a/frontend/src/search-count.ts +++ b/frontend/src/search-count.ts @@ -13,7 +13,7 @@ export class SearchCount extends SearchaliciousResultCtlMixin(LitElement) { `; @property({attribute: 'display-time', type: Boolean}) - displayTime = true; + displayTime = false; // HTML to display before the search is launched beforeSearch = html``;