summaryrefslogtreecommitdiff
path: root/packages/frontend/src/pages/search.vue
diff options
context:
space:
mode:
authorsyuilo <4439005+syuilo@users.noreply.github.com>2025-04-27 20:42:41 +0900
committersyuilo <4439005+syuilo@users.noreply.github.com>2025-04-27 20:42:41 +0900
commitee49c424108d01a67d51590847ac1dfd6060996e (patch)
tree34a8f95fe2bd569bb5f18e53e8c7c136293fb678 /packages/frontend/src/pages/search.vue
parentNew Crowdin updates (#15849) (diff)
downloadsharkey-ee49c424108d01a67d51590847ac1dfd6060996e.tar.gz
sharkey-ee49c424108d01a67d51590847ac1dfd6060996e.tar.bz2
sharkey-ee49c424108d01a67d51590847ac1dfd6060996e.zip
fix lint
Diffstat (limited to '')
-rw-r--r--packages/frontend/src/pages/search.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/frontend/src/pages/search.vue b/packages/frontend/src/pages/search.vue
index 848ee72fb2..b6d21a4616 100644
--- a/packages/frontend/src/pages/search.vue
+++ b/packages/frontend/src/pages/search.vue
@@ -5,7 +5,7 @@ SPDX-License-Identifier: AGPL-3.0-only
<template>
<PageWithHeader v-model:tab="tab" :actions="headerActions" :tabs="headerTabs" :swipable="true">
- <div class="_spacer" v-if="tab === 'note'" style="--MI_SPACER-w: 800px;">
+ <div v-if="tab === 'note'" class="_spacer" style="--MI_SPACER-w: 800px;">
<div v-if="notesSearchAvailable || ignoreNotesSearchAvailable">
<XNote v-bind="props"/>
</div>
@@ -14,7 +14,7 @@ SPDX-License-Identifier: AGPL-3.0-only
</div>
</div>
- <div class="_spacer" v-else-if="tab === 'user'" style="--MI_SPACER-w: 800px;">
+ <div v-else-if="tab === 'user'" class="_spacer" style="--MI_SPACER-w: 800px;">
<XUser v-bind="props"/>
</div>
</PageWithHeader>