Skip to content

Commit

Permalink
Merge pull request #153 from OS2iot/feature/minorFrontendFix
Browse files Browse the repository at this point in the history
Fallback on status on application table.
  • Loading branch information
augusthjerrild authored Jan 10, 2024
2 parents c8b2212 + 73d0a85 commit c1e7374
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
{{'APPLICATION-TABLE.STATUS' | translate}}
</th>
<td mat-cell *matCellDef="let application">
{{'APPLICATION.STATUS.' + application.status | translate}}
{{application.status ? ('APPLICATION.STATUS.' + application.status | translate) : '-'}}
</td>
</ng-container>

Expand Down

0 comments on commit c1e7374

Please sign in to comment.