Skip to content

Commit 7844e32

Browse files
Fix application state translation
1 parent 32140cc commit 7844e32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/applications/applications-list/applications-table/applications-table.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
<td *matCellDef="let application" mat-cell>
4040
<div class="options-container">
4141
<app-option-field
42-
[title]="'APPLICATION.STATUS.' + application.status | translate"
42+
[title]="'APPLICATION.STATUS.' + (application.status ?? 'NONE') | translate"
4343
[type]="application.status === 'IN-OPERATION' ? 'warning' : 'default'"
4444
/>
4545
</div>

0 commit comments

Comments
 (0)