summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-12-23 03:27:26 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-12-23 03:27:26 +0900
commit7d6aac3431a9a370a505972ecfa35c39b1e8e8d3 (patch)
treefeba6b53e83f4959da568f65480c1a642fc12e50 /src
parent本文からメンション等を展開しないオプション (#3721) (diff)
downloadsharkey-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.vue2
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);
});
}