diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-05-07 16:25:06 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-05-07 16:25:06 +0900 |
| commit | de6cbf8a22edf64bf39806b04a0222da841b8375 (patch) | |
| tree | 379696ec0db817b7390d871189cfb07a8335162a /src/client/app/mobile | |
| parent | oops (diff) | |
| download | misskey-de6cbf8a22edf64bf39806b04a0222da841b8375.tar.gz misskey-de6cbf8a22edf64bf39806b04a0222da841b8375.tar.bz2 misskey-de6cbf8a22edf64bf39806b04a0222da841b8375.zip | |
リモートアカウントの投稿に対しての返信にはメンションを付けるように
Diffstat (limited to 'src/client/app/mobile')
| -rw-r--r-- | src/client/app/mobile/views/components/post-form.vue | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/client/app/mobile/views/components/post-form.vue b/src/client/app/mobile/views/components/post-form.vue index 3f890223a3..e5281fcbc4 100644 --- a/src/client/app/mobile/views/components/post-form.vue +++ b/src/client/app/mobile/views/components/post-form.vue @@ -67,6 +67,10 @@ export default Vue.extend({ }, mounted() { + if (this.reply && this.reply.user.host != null) { + this.text = `@${this.reply.user.username}@${this.reply.user.host} `; + } + this.$nextTick(() => { this.focus(); }); |