Fix Spacer being dropped when DynamicReport is calculated

This commit is contained in:
RunasSudo 2025-05-27 17:31:11 +10:00
parent 280a2090d9
commit e02b927b69
Signed by: RunasSudo
GPG Key ID: 7234E476BF21C61A

View File

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