tschirmer
tschirmer
This is the offending file. vendor/magento/module-re-captcha-user/view/adminhtml/templates/recaptcha.phtml Essentially, this was coded in a way that the submit function binders were able to allow the submit wihtout waiting for the recaptcha code....
Hey @C4rter . Try this instead. ``` $('#login-form').submit(function (event) { if (!token) { event.preventDefault(event); event.stopImmediatePropagation(); event.stopPropagation(); let attemptRecaptcha = () => { attempts++; if (attempts > maxRetryAttempts){ console.error("Could not fetch...
I'll have a further look into how you're doing the filtering. I hadn't looked into the code much, I assumed it was using ElasticSearch to produce the initial results, then...