aboutsummaryrefslogtreecommitdiff
path: root/src/components/registration/registration.js
diff options
context:
space:
mode:
authordave <starpumadev@gmail.com>2019-03-27 13:50:51 -0400
committerdave <starpumadev@gmail.com>2019-03-27 13:50:51 -0400
commit0e2931e7de48d2e01aa8256f5f3f796c7d474865 (patch)
tree14663481aa5fa97fa4df194c58365615b1ede7fc /src/components/registration/registration.js
parent467647d5d715730a14d41737e4326696ff971cc2 (diff)
parent85e9e52090aedd0f1d850cef58873da2de3d8347 (diff)
Merge branch 'develop' of https://git.pleroma.social/pleroma/pleroma-fe into issue-433-status-reply-form
Diffstat (limited to 'src/components/registration/registration.js')
-rw-r--r--src/components/registration/registration.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/components/registration/registration.js b/src/components/registration/registration.js
index ab6cd64d..8dc00420 100644
--- a/src/components/registration/registration.js
+++ b/src/components/registration/registration.js
@@ -35,6 +35,9 @@ const registration = {
},
computed: {
token () { return this.$route.params.token },
+ bioPlaceholder () {
+ return this.$t('registration.bio_placeholder').replace(/\s*\n\s*/g, ' \n')
+ },
...mapState({
registrationOpen: (state) => state.instance.registrationOpen,
signedIn: (state) => !!state.users.currentUser,