Skip to content

Commit

Permalink
Fix cost calculation in TableSharedStorageComponent
Browse files Browse the repository at this point in the history
  • Loading branch information
austenstone committed Feb 8, 2024
1 parent 768e3f8 commit 7ac8202
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export class TableSharedStorageComponent implements OnChanges, AfterViewInit {
});
}
workflowEntry.total += line.quantity;
workflowEntry.cost += cost * daysInMonth;
workflowEntry.cost += cost;
workflowEntry.count++;
} else {
acc.push({
Expand Down

0 comments on commit 7ac8202

Please sign in to comment.