Fix Spacer being dropped when DynamicReport is calculated

This commit is contained in:
RunasSudo 2025-05-27 17:31:11 +10:00
parent 1b67df61be
commit 930213c461
Signed by: RunasSudo
GPG Key ID: 7234E476BF21C61A

View File

@ -82,7 +82,9 @@ impl CalculatableDynamicReport {
calculated_entries.push(DynamicReportEntry::LiteralRow(updated_row)); calculated_entries.push(DynamicReportEntry::LiteralRow(updated_row));
} }
CalculatableDynamicReportEntry::Spacer => (), CalculatableDynamicReportEntry::Spacer => {
calculated_entries.push(DynamicReportEntry::Spacer);
}
} }
} }