diff options
| author | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2019-05-27 20:04:01 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2019-05-27 20:04:01 +0900 |
| commit | 834edd216cf46a743cbff8bafa71b67ecc3f6d82 (patch) | |
| tree | b045cd0554b9ce9ab64f37434f9cbe2c2287af7b | |
| parent | 11.20.0 (diff) | |
| download | sharkey-834edd216cf46a743cbff8bafa71b67ecc3f6d82.tar.gz sharkey-834edd216cf46a743cbff8bafa71b67ecc3f6d82.tar.bz2 sharkey-834edd216cf46a743cbff8bafa71b67ecc3f6d82.zip | |
Fix #4894 (#5000)
| -rw-r--r-- | src/client/app/common/views/components/signup.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/common/views/components/signup.vue b/src/client/app/common/views/components/signup.vue index bf8e5d25b8..421d09a4dd 100644 --- a/src/client/app/common/views/components/signup.vue +++ b/src/client/app/common/views/components/signup.vue @@ -43,7 +43,7 @@ </i18n> </ui-switch> <div v-if="meta.enableRecaptcha" class="g-recaptcha" :data-sitekey="meta.recaptchaSiteKey" style="margin: 16px 0;"></div> - <ui-button type="submit" :disabled="!(meta.ToSUrl ? ToSAgreement : true)">{{ $t('create') }}</ui-button> + <ui-button type="submit" :disabled="!(meta.ToSUrl ? ToSAgreement : true) || passwordRetypeState == 'not-match'">{{ $t('create') }}</ui-button> </template> </form> </template> |