From 49270e6727b5c997c064c4e7a68ac96e2bf201f8 Mon Sep 17 00:00:00 2001 From: FragginWagon Date: Thu, 29 Jan 2026 03:51:11 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Simplify=20formatting=20and=20im?= =?UTF-8?q?prove=20readability=20in=20SearchBar=20component?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/components/gamemaster/SearchBar.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/websites/pokedex.online/src/components/gamemaster/SearchBar.vue b/code/websites/pokedex.online/src/components/gamemaster/SearchBar.vue index f281cff..1569942 100644 --- a/code/websites/pokedex.online/src/components/gamemaster/SearchBar.vue +++ b/code/websites/pokedex.online/src/components/gamemaster/SearchBar.vue @@ -60,9 +60,7 @@ {{ searchError }} -
- Searching... -
+
Searching...
@@ -104,7 +102,9 @@ const { hasSearchResults } = useGamemasterSearch(fileLines, displayLines); -const isDisabled = computed(() => props.disabled || fileLines.value.length === 0); +const isDisabled = computed( + () => props.disabled || fileLines.value.length === 0 +); const currentResultLineTitle = computed(() => { if (!currentResultLineNumber.value) return '';