Merge branch 'fix-passwords-same' into 'develop'
fix passwords not being detected as same Closes #1228 See merge request pleroma/pleroma-fe!1706
This commit is contained in:
commit
830b0008a2
1 changed files with 2 additions and 2 deletions
|
@ -158,10 +158,10 @@
|
|||
class="form-error"
|
||||
>
|
||||
<ul>
|
||||
<li v-if="!v$.user.confirm.required">
|
||||
<li v-if="v$.user.confirm.required.$invalid">
|
||||
<span>{{ $t('registration.validations.password_confirmation_required') }}</span>
|
||||
</li>
|
||||
<li v-if="!v$.user.confirm.sameAsPassword">
|
||||
<li v-if="v$.user.confirm.sameAs.$invalid">
|
||||
<span>{{ $t('registration.validations.password_confirmation_match') }}</span>
|
||||
</li>
|
||||
</ul>
|
||||
|
|
Loading…
Reference in a new issue