add missing FriendlyCaptcha condition to bot-protection.vue
This commit is contained in:
parent
94977c2b1a
commit
08746d1c33
1 changed files with 1 additions and 0 deletions
|
@ -301,6 +301,7 @@ const canSaving = computed((): boolean => {
|
||||||
(botProtectionForm.state.provider === 'mcaptcha' && !!captchaResult.value) ||
|
(botProtectionForm.state.provider === 'mcaptcha' && !!captchaResult.value) ||
|
||||||
(botProtectionForm.state.provider === 'recaptcha' && !!captchaResult.value) ||
|
(botProtectionForm.state.provider === 'recaptcha' && !!captchaResult.value) ||
|
||||||
(botProtectionForm.state.provider === 'turnstile' && !!captchaResult.value) ||
|
(botProtectionForm.state.provider === 'turnstile' && !!captchaResult.value) ||
|
||||||
|
(botProtectionForm.state.provider === 'fc' && !!captchaResult.value) ||
|
||||||
(botProtectionForm.state.provider === 'testcaptcha' && !!captchaResult.value);
|
(botProtectionForm.state.provider === 'testcaptcha' && !!captchaResult.value);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue