Skip to content
Snippets Groups Projects
Verified Commit 851dccd5 authored by Florian Azizian's avatar Florian Azizian
Browse files

FIX #220 do not close modal if action clause is invalid

parent beea739f
No related branches found
No related tags found
No related merge requests found
......@@ -125,12 +125,14 @@ export class BasketAdministrationComponent implements OnInit {
this.http.put(this.coreUrl + "rest/baskets/" + this.id + "/groups/" + result.group.group_id, { 'result_page': result.group.result_page, 'groupActions': result.group.groupActions })
.subscribe((data: any) => {
//this.basketGroups.push(data);
this.dialogRef = null;
this.notify.success(this.lang.basketUpdated);
}, (err) => {
this.dialogRef = null;
this.openSettings(group, action);
this.notify.error(err.error.errors);
});
}
this.dialogRef = null;
});
}
......
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