web/storagenode: extra division removed

Change-Id: I06c66b727064e35382f13a787545253651f266ff
This commit is contained in:
NickolaiYurchenko 2020-07-28 15:33:15 +03:00
parent b265b7f555
commit 635b051aee

View File

@ -222,7 +222,7 @@ export default class EstimationArea extends Vue {
public get grossTotal(): number {
return (this.currentBandwidthDownload * BANDWIDTH_DOWNLOAD_PRICE_PER_TB
+ this.currentBandwidthAuditAndRepair * BANDWIDTH_REPAIR_PRICE_PER_TB
+ this.currentDiskSpace * DISK_SPACE_PRICE_PER_TB / 720) / TB;
+ this.currentDiskSpace * DISK_SPACE_PRICE_PER_TB) / TB;
}
/**