diff options
| author | Henry Jameson <me@hjkos.com> | 2019-03-27 22:12:51 +0200 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2019-03-27 22:12:51 +0200 |
| commit | ff18e339cf5c243a77e4035a1348c543ebcbf8d1 (patch) | |
| tree | e950d98855e917658cd8390751fec6edb8206c48 /src/components/registration/registration.js | |
| parent | 0a031aae20bf1dc3bc0b15af0b794798d179aafa (diff) | |
| parent | 987b5162a7530979e9fa887a24311eb1cd480fc5 (diff) | |
Merge remote-tracking branch 'upstream/develop' into mastoapi/followers
* upstream/develop:
#442 - update placeholder linebreak
#442 - clean up Bio placeholder text
undo this change since BE returns empty object for relationship, add in a separate MR
updates normalizer for proper user handling and adds support for friends tl via mastoapi
Diffstat (limited to 'src/components/registration/registration.js')
| -rw-r--r-- | src/components/registration/registration.js | 3 |
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, |
