Skip to content

Commit d96febb

Browse files
Merge pull request #199 from OS2iot/hotfix/Fix-application-state-translation
Fix application state translation
2 parents 32140cc + 7844e32 commit d96febb

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)