Skip to content
Snippets Groups Projects
Commit dd9b2613 authored by Lukas Schneider's avatar Lukas Schneider
Browse files

Replace filter with forEach in buy and charge template

parent db3f2bca
No related branches found
No related tags found
No related merge requests found
......@@ -194,12 +194,11 @@
},
success: data => {
clearError();
recently_bought.filter(item => {
recently_bought.forEach(item => {
if (item.purchase_id == id) {
item.annullated = true;
increaseMoney(item.price);
}
return true;
});
updateRecentlyBoughtList();
},
......
......@@ -179,12 +179,11 @@
},
success: data => {
clearError();
recent_charges.filter(item => {
recent_charges.forEach(item => {
if (item.id == id) {
item.annullated = true;
reduceMoney(item.amount);
}
return true;
});
updateRecentCharges();
},
......
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