diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-12-27 20:34:30 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-12-27 20:34:30 +0900 |
| commit | 2f901da58c8974ecbbabd637aef1662941976658 (patch) | |
| tree | b79a467e8a2b335c48a12dfca3df58f32255329c /src/client/app/mobile/views | |
| parent | Rename: 404 --> not-found (diff) | |
| download | misskey-2f901da58c8974ecbbabd637aef1662941976658.tar.gz misskey-2f901da58c8974ecbbabd637aef1662941976658.tar.bz2 misskey-2f901da58c8974ecbbabd637aef1662941976658.zip | |
[Client] Fix bug
Diffstat (limited to 'src/client/app/mobile/views')
| -rw-r--r-- | src/client/app/mobile/views/components/ui.nav.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/mobile/views/components/ui.nav.vue b/src/client/app/mobile/views/components/ui.nav.vue index ebd19e9f5f..1e568c517c 100644 --- a/src/client/app/mobile/views/components/ui.nav.vue +++ b/src/client/app/mobile/views/components/ui.nav.vue @@ -104,7 +104,7 @@ export default Vue.extend({ }).then(async ({ canceled, result: query }) => { if (canceled) return; - const q = this.q.trim(); + const q = query.trim(); if (q.startsWith('@')) { this.$router.push(`/${q}`); } else if (q.startsWith('#')) { |