We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f365669 commit 5584086Copy full SHA for 5584086
backend/src/reports/reports.service.ts
@@ -422,7 +422,7 @@ export class ReportsService {
422
{ field: 'confidence', value: report.confidence },
423
{ field: 'status', value: report.status },
424
{ field: 'missingInformation', value: report.missingInformation || [] },
425
- { field: 'isMedicalReport', value: report.isMedicalReport || undefined },
+ { field: 'isMedicalReport', value: report.isMedicalReport === false ? false : true },
426
{ field: 'errorMessage', value: report.errorMessage || '' },
427
{ field: 'updatedAt', value: report.updatedAt },
428
];
0 commit comments