Skip to content
Snippets Groups Projects
Commit 054c926a authored by Florian Azizian's avatar Florian Azizian
Browse files

FIX #8567 forEach

parent 0324c494
No related branches found
No related tags found
No related merge requests found
...@@ -270,7 +270,7 @@ export class UsersAdministrationRedirectModalComponent extends AutoCompletePlugi ...@@ -270,7 +270,7 @@ export class UsersAdministrationRedirectModalComponent extends AutoCompletePlugi
} }
sendFunction() { sendFunction() {
var valid = true; var valid = true;
this.data.userDestRedirectModels.each(function (element: any) { this.data.userDestRedirectModels.forEach((element: any) => {
if (!element.redirectUserId) { if (!element.redirectUserId) {
valid = false; valid = false;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment