Fix date format on walletDetails list
This commit is contained in:
parent
f1626eb498
commit
3c956c8fa2
1 changed files with 1 additions and 1 deletions
|
|
@ -273,7 +273,7 @@
|
||||||
<div>
|
<div>
|
||||||
<time class="wallet-details__tx-time" ng-if="btx.time && createdWithinPastDay(btx.time)">{{btx.time * 1000 | amTimeAgo}}</time>
|
<time class="wallet-details__tx-time" ng-if="btx.time && createdWithinPastDay(btx.time)">{{btx.time * 1000 | amTimeAgo}}</time>
|
||||||
<time class="wallet-details__tx-time" ng-if="btx.time && !createdWithinPastDay(btx.time)">
|
<time class="wallet-details__tx-time" ng-if="btx.time && !createdWithinPastDay(btx.time)">
|
||||||
{{btx.time * 1000 | amDateFormat:'MMM d, YYYY'}}
|
{{btx.time * 1000 | amDateFormat:'MMM D, YYYY'}}
|
||||||
</time>
|
</time>
|
||||||
</div>
|
</div>
|
||||||
</span>
|
</span>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue