We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1029d0 commit c4ef16bCopy full SHA for c4ef16b
1 file changed
src/app/system/manage-reports/manage-reports.component.html
@@ -42,7 +42,15 @@
42
43
<ng-container matColumnDef="reportCategory">
44
<th mat-header-cell *matHeaderCellDef mat-sort-header>{{ 'labels.inputs.Report Category' | translate }}</th>
45
- <td mat-cell *matCellDef="let report">{{ report.reportCategory | translateKey: 'catalogs' }}</td>
+ <td mat-cell *matCellDef="let report">
46
+ {{
47
+ report.reportCategory &&
48
+ report.reportCategory.trim() &&
49
+ report.reportCategory.trim().toUpperCase() !== '(NULL)'
50
+ ? (report.reportCategory.trim() | translateKey: 'catalogs')
51
+ : ''
52
+ }}
53
+ </td>
54
</ng-container>
55
56
<ng-container matColumnDef="coreReport">
0 commit comments