diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-12-23 03:27:26 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-12-23 03:27:26 +0900 |
| commit | 7d6aac3431a9a370a505972ecfa35c39b1e8e8d3 (patch) | |
| tree | feba6b53e83f4959da568f65480c1a642fc12e50 /src | |
| parent | 本文からメンション等を展開しないオプション (#3721) (diff) | |
| download | sharkey-7d6aac3431a9a370a505972ecfa35c39b1e8e8d3.tar.gz sharkey-7d6aac3431a9a370a505972ecfa35c39b1e8e8d3.tar.bz2 sharkey-7d6aac3431a9a370a505972ecfa35c39b1e8e8d3.zip | |
Fix space
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/app/desktop/views/components/post-form.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/desktop/views/components/post-form.vue b/src/client/app/desktop/views/components/post-form.vue index de3e815b8e..0e602e474e 100644 --- a/src/client/app/desktop/views/components/post-form.vue +++ b/src/client/app/desktop/views/components/post-form.vue @@ -209,7 +209,7 @@ export default Vue.extend({ // ダイレクトへのリプライはリプライ先ユーザーを初期設定 if (this.reply && this.reply.visibility === 'specified') { - this.$root.api('users/show', { userId: this.reply.userId }).then(user => { + this.$root.api('users/show', { userId: this.reply.userId }).then(user => { this.visibleUsers.push(user); }); } |