style: fix linter warning
This commit is contained in:
parent
5451cfae32
commit
55044de921
1 changed files with 1 additions and 1 deletions
|
@ -377,7 +377,7 @@ export function triggerBudgetChanges(oldValues, newValues) {
|
||||||
export async function doTransfer(categoryIds, transferId) {
|
export async function doTransfer(categoryIds, transferId) {
|
||||||
let { createdMonths: months } = sheet.get().meta();
|
let { createdMonths: months } = sheet.get().meta();
|
||||||
|
|
||||||
[...months].map(month => {
|
[...months].forEach(month => {
|
||||||
let totalValue = categoryIds
|
let totalValue = categoryIds
|
||||||
.map(id => {
|
.map(id => {
|
||||||
return budgetActions.getBudget({ month, category: id });
|
return budgetActions.getBudget({ month, category: id });
|
||||||
|
|
Loading…
Reference in a new issue