Working on eco spreadsheet front end

This commit is contained in:
Khalim Conn-Kowlessar 2023-10-13 13:48:44 +11:00
parent aa7819136c
commit ee18fc091d
2 changed files with 6 additions and 8 deletions

View file

@ -212,7 +212,7 @@ export default function EcoSpreadsheetHome() {
if (extensions.includes("xlsx")) {
// Append the excel onto the existing files
// TODO
setFiles();
setFiles([]);
setUploadMessage("");
} else {
setUploadMessage("Please select the existing ECO spreadsheet excel");

View file

@ -108,18 +108,16 @@ function SummaryBox({
</tr>
<tr>
<td className="text-gray-700 ">Total Value Increase</td>
<td className="text-gray-600 text-end">
{totalValueIncreaseFormatted}
</td>
<td className="text-gray-600 text-end">{"-"}</td>
</tr>
<tr>
<td className="text-gray-700 ">Annual rental yield Increase</td>
<td className="text-gray-600 text-end">
{rentalYieldIncreaseFormatted}
</td>
<td className="text-gray-600 text-end">{"-"}</td>
</tr>
<tr>
<td className="text-gray-700 ">Annual Energy Bill Savings</td>
<td className="text-gray-700 ">
Annual Energy Bill Savings (per property)
</td>
<td className="text-gray-600 text-end">
{energyCostSavingsFormatted}
</td>