diff options
| author | sobadon <sbdn@chasoba.net> | 2021-01-07 12:21:34 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-07 12:21:34 +0900 |
| commit | 62ac3400da87429294d84d0ee085f5bfd53ca95a (patch) | |
| tree | eafee1af7fde4a465a5bd2e059dd094659eba438 /src/client/pages | |
| parent | 12.66.0 (diff) | |
| download | misskey-62ac3400da87429294d84d0ee085f5bfd53ca95a.tar.gz misskey-62ac3400da87429294d84d0ee085f5bfd53ca95a.tar.bz2 misskey-62ac3400da87429294d84d0ee085f5bfd53ca95a.zip | |
検索のタイトルが変更されない問題を修正 (#7062)
Diffstat (limited to 'src/client/pages')
| -rw-r--r-- | src/client/pages/search.vue | 4 |
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: { |