Skip to content

Commit

Permalink
Fix income page summary
Browse files Browse the repository at this point in the history
  • Loading branch information
budziam committed Mar 31, 2021
1 parent b5e844e commit a5565bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion includes/View/Pages/Admin/PageAdminIncome.php
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ private function renderSummary(array $income): string
$serverIncome = array_get($serversIncomes, $serverId, 0);
$serverIncomeText = $this->priceTextService->getPlainPrice($serverIncome);
$totalIncome += $serverIncome;
$tableRows[] = new Cell("td", $serverIncomeText);
$tableRows[] = new Cell($serverIncomeText);
}

$totalIncome = $this->priceTextService->getPlainPrice($totalIncome);
Expand Down

0 comments on commit a5565bd

Please sign in to comment.