Skip to content
Snippets Groups Projects
Verified Commit 95f1c501 authored by Alex ORLUC's avatar Alex ORLUC
Browse files

FIX check all when basket is redirected

parent 3514c2c1
No related branches found
No related tags found
No related merge requests found
...@@ -70,7 +70,9 @@ export class UserAdministrationComponent extends AutoCompletePlugin implements O ...@@ -70,7 +70,9 @@ export class UserAdministrationComponent extends AutoCompletePlugin implements O
masterToggleBaskets(event: any) { masterToggleBaskets(event: any) {
if (event.checked) { if (event.checked) {
this.user.baskets.forEach((basket: any) => { this.user.baskets.forEach((basket: any) => {
this.selectionBaskets.select(basket); if (basket.userToDisplay == '') {
this.selectionBaskets.select(basket);
}
}); });
} else { } else {
this.selectionBaskets.clear(); this.selectionBaskets.clear();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment