Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
hillelcoren committed Jul 15, 2023
2 parents 86188a0 + bf6085e commit 65171f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,6 @@ void _registerErrorHandlers() {
*/

ErrorWidget.builder = (FlutterErrorDetails details) {
return Center(child: Text(details.toString()));
return Material(child: Center(child: Text(details.toString())));
};
}
2 changes: 1 addition & 1 deletion lib/ui/reports/invoice_report.dart
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ ReportResult invoiceReport(
break;
case InvoiceReportFields.converted_balance:
value = invoice.isCancelled
? 0
? 0.0
: round(invoice.balanceOrAmount * 1 / invoice.exchangeRate, 2);
break;
case InvoiceReportFields.client:
Expand Down

0 comments on commit 65171f0

Please sign in to comment.