Skip to content

Commit 7ac8202

Browse files
committed
Fix cost calculation in TableSharedStorageComponent
1 parent 768e3f8 commit 7ac8202

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/components/usage/shared-storage/table-shared-storage/table-shared-storage.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ export class TableSharedStorageComponent implements OnChanges, AfterViewInit {
6363
});
6464
}
6565
workflowEntry.total += line.quantity;
66-
workflowEntry.cost += cost * daysInMonth;
66+
workflowEntry.cost += cost;
6767
workflowEntry.count++;
6868
} else {
6969
acc.push({

0 commit comments

Comments
 (0)