summaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
Diffstat (limited to 'src/client')
-rw-r--r--src/client/pages/search.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/pages/search.vue b/src/client/pages/search.vue
index f95848cfd3..ed92243cd2 100644
--- a/src/client/pages/search.vue
+++ b/src/client/pages/search.vue
@@ -7,7 +7,7 @@
</template>
<script lang="ts">
-import { defineComponent } from 'vue';
+import { computed, defineComponent } from 'vue';
import { faSearch } from '@fortawesome/free-solid-svg-icons';
import Progress from '@/scripts/loading';
import XNotes from '@/components/notes.vue';
@@ -20,7 +20,7 @@ export default defineComponent({
data() {
return {
INFO: {
- title: this.$t('searchWith', { q: this.$route.query.q }),
+ title: computed(() => this.$t('searchWith', { q: this.$route.query.q })),
icon: faSearch
},
pagination: {