diff options
| author | HJ <30-hj@users.noreply.git.pleroma.social> | 2019-03-25 22:29:17 +0000 |
|---|---|---|
| committer | HJ <30-hj@users.noreply.git.pleroma.social> | 2019-03-25 22:29:17 +0000 |
| commit | 2f1e69047882a1fc36f87dc1fff752bc76e61fa4 (patch) | |
| tree | fffb162b2f2a8d923ac8abc2fc07c86c5efdc5f8 /src/components/registration/registration.vue | |
| parent | 854d0e80512d2da80cd5153144698a5148da4aa6 (diff) | |
| parent | 5717d971829c54e4387b05725658e652b69a8b17 (diff) | |
Merge branch 'issue-442-placeholder-fix' into 'develop'
#442 - clean up Bio placeholder text
Closes #442
See merge request pleroma/pleroma-fe!689
Diffstat (limited to 'src/components/registration/registration.vue')
| -rw-r--r-- | src/components/registration/registration.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/registration/registration.vue b/src/components/registration/registration.vue index e22b308d..110b27bf 100644 --- a/src/components/registration/registration.vue +++ b/src/components/registration/registration.vue @@ -45,7 +45,7 @@ <div class='form-group'> <label class='form--label' for='bio'>{{$t('registration.bio')}} ({{$t('general.optional')}})</label> - <textarea :disabled="isPending" v-model='user.bio' class='form-control' id='bio' :placeholder="$t('registration.bio_placeholder')"></textarea> + <textarea :disabled="isPending" v-model='user.bio' class='form-control' id='bio' :placeholder="bioPlaceholder"></textarea> </div> <div class='form-group' :class="{ 'form-group--error': $v.user.password.$error }"> |
