Skip to content

Commit c1e7374

Browse files
Merge pull request #153 from OS2iot/feature/minorFrontendFix
Fallback on status on application table.
2 parents c8b2212 + 73d0a85 commit c1e7374

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
@@ -75,7 +75,7 @@
7575
{{'APPLICATION-TABLE.STATUS' | translate}}
7676
</th>
7777
<td mat-cell *matCellDef="let application">
78-
{{'APPLICATION.STATUS.' + application.status | translate}}
78+
{{application.status ? ('APPLICATION.STATUS.' + application.status | translate) : '-'}}
7979
</td>
8080
</ng-container>
8181

0 commit comments

Comments
 (0)