diff options
| author | Egor Kislitsyn <egor@kislitsyn.com> | 2019-12-12 18:19:46 +0700 |
|---|---|---|
| committer | Egor Kislitsyn <egor@kislitsyn.com> | 2019-12-12 18:19:46 +0700 |
| commit | ed3144eb1168ece5fcd3eed2867c653f785039d8 (patch) | |
| tree | edf5741470e11900cab88eba7cebbac4170be0bd | |
| parent | 3cc6f80628233c8b67912af868062f34bd49655a (diff) | |
Support "native" captcha
| -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 5bb06a4f..222b67a8 100644 --- a/src/components/registration/registration.vue +++ b/src/components/registration/registration.vue @@ -172,7 +172,7 @@ for="captcha-label" >{{ $t('captcha') }}</label> - <template v-if="captcha.type == 'kocaptcha'"> + <template v-if="['kocaptcha', 'native'].includes(captcha.type)"> <img :src="captcha.url" @click="setCaptcha" |
