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 '';