show full date in wallet detail list if the transaction occured more than a day ago
This commit is contained in:
parent
bddfdac0b1
commit
b0e23b7231
2 changed files with 9 additions and 1 deletions
|
|
@ -234,7 +234,9 @@
|
|||
</span>
|
||||
</span>
|
||||
<div>
|
||||
<time class="wallet-details__tx-time" ng-if="btx.time">{{btx.time * 1000 | amTimeAgo}}</time>
|
||||
<time class="wallet-details__tx-time" ng-if="btx.time && createdWithinPastDay(btx)">{{btx.time * 1000 | amTimeAgo}}</time>
|
||||
<time class="wallet-details__tx-time" ng-if="btx.time && !createdWithinPastDay(btx)">{{btx.time * 1000 | date:'MMMM d, y'}}</time>
|
||||
|
||||
<span translate class="text-warning"
|
||||
ng-show="!btx.time && (!btx.confirmations || btx.confirmations == 0)">
|
||||
Unconfirmed
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue