🎨 Simplify formatting and improve readability in SearchBar component
This commit is contained in:
@@ -60,9 +60,7 @@
|
||||
{{ searchError }}
|
||||
</div>
|
||||
|
||||
<div v-if="isSearching" class="search-status">
|
||||
Searching...
|
||||
</div>
|
||||
<div v-if="isSearching" class="search-status">Searching...</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@@ -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 '';
|
||||
|
||||
Reference in New Issue
Block a user