Skip to content
Code-Schnipsel Gruppen Projekte
Commit b2b6721a erstellt von Henning Leutz's avatar Henning Leutz :martial_arts_uniform:
Dateien durchsuchen

fix: ensure onSuccess attribute is a function in login.js

The commit ensures that the onSuccess attribute is a function, and it's successful execution before
proceeding. This is implemented in bin/frontend/controls/login/Login.js. With this fix, potential
errors from incorrectly set onSuccess attributes can be avoided.
Übergeordneter ff769b7b
No related branches found
No related tags found
Keine zugehörigen Merge Requests gefunden
Pipeline #16758 mit Warnungen bestanden mit Phase
in 2 Minuten und 44 Sekunden
......@@ -357,8 +357,10 @@ define('package/quiqqer/frontend-users/bin/frontend/controls/login/Login', [
self.$hideSocialLoader(Form);
self.$onSuccess();
if (typeof self.getAttribute('onSuccess') === 'function') {
self.getAttribute('onSuccess')(self);
if (
typeof self.getAttribute('onSuccess') === 'function' &&
self.getAttribute('onSuccess')(self)
) {
return;
}
......
0% oder .
You are about to add 0 people to the discussion. Proceed with caution.
Bearbeitung dieser Nachricht zuerst beenden!
Bitte registrieren oder zum Kommentieren