diff options
| author | HJ <spam@hjkos.com> | 2018-12-13 10:39:50 +0000 |
|---|---|---|
| committer | HJ <spam@hjkos.com> | 2018-12-13 10:39:50 +0000 |
| commit | e443716bcd616ad61efae161624dd970841a935c (patch) | |
| tree | 7c79fd166b88bd749e2c204d52b42ecddc9c09b8 /src | |
| parent | 2077927ff3b2d9ddc255fe21635aa125cce5402d (diff) | |
| parent | 9f480552615e00618e37b5688c25a762b121f1ba (diff) | |
Merge branch 'fix-scope-copy' into 'develop'
Fix typo that prevented scope copy from working.
Closes #214
See merge request pleroma/pleroma-fe!413
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/post_status_form/post_status_form.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/post_status_form/post_status_form.js b/src/components/post_status_form/post_status_form.js index 789243cf..f9252f73 100644 --- a/src/components/post_status_form/post_status_form.js +++ b/src/components/post_status_form/post_status_form.js @@ -46,7 +46,7 @@ const PostStatusForm = { statusText = buildMentionsString({ user: this.repliedUser, attentions: this.attentions }, currentUser) } - const scope = (this.copyMessageScope && this.$store.state.config.copyScope || this.copyMessageScope === 'direct') + const scope = (this.copyMessageScope && this.$store.state.config.scopeCopy || this.copyMessageScope === 'direct') ? this.copyMessageScope : this.$store.state.users.currentUser.default_scope |
