Skip to content

Commit

Permalink
Merge pull request #791 from bcgov/last-action-date-fix
Browse files Browse the repository at this point in the history
FIX: LastActionDate on Listings Table page
  • Loading branch information
ychung-mot authored Nov 18, 2024
2 parents 3220cd5 + de04ba7 commit 3f6be49
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ <h2 class="title">Listings</h2>
{{ row.lastActionNm || '-'}}
</td>
<td>
{{ row.lastActionDtm? '-': row.lastActionDtm |date }}
{{ row.lastActionDtm? (row.lastActionDtm |date) : '-' }}
</td>
</tr>
</ng-template>
Expand Down

0 comments on commit 3f6be49

Please sign in to comment.