Skip to content

Commit

Permalink
PT-14050: add "date" filter (#96)
Browse files Browse the repository at this point in the history
  • Loading branch information
basilkot authored Nov 1, 2023
1 parent 62b6e2a commit 20ba5e3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<ul class="list __info">
<li class="list-item">
<div class="list-t">{{ 'quotes.blades.quote-detail.labels.created' | translate }}</div>
<div class="list-descr">{{blade.currentEntity.createdDate}}</div>
<div class="list-descr">{{blade.currentEntity.createdDate | date : 'medium'}}</div>
</li>
</ul>
</div>
Expand All @@ -38,7 +38,7 @@
<ul class="list __info">
<li class="list-item">
<div class="list-t">{{ 'quotes.blades.quote-detail.labels.last-updated' | translate }}</div>
<div class="list-descr">{{blade.currentEntity.modifiedDate}}</div>
<div class="list-descr">{{blade.currentEntity.modifiedDate | date : 'medium'}}</div>
</li>
</ul>
</div>
Expand Down

0 comments on commit 20ba5e3

Please sign in to comment.