hide border for last tx in group
This commit is contained in:
parent
155697e087
commit
ccdad2c6e4
3 changed files with 14 additions and 3 deletions
|
|
@ -180,7 +180,7 @@
|
|||
|
||||
<div class="wallet-details__list" ng-show="txHistory[0]">
|
||||
<div ng-repeat="btx in txHistory track by $index" ng-click="openTxModal(btx)">
|
||||
<div class="wallet-details__group-label" ng-if="showGroupHeader($index)">
|
||||
<div class="wallet-details__group-label" ng-if="isFirstInGroup($index)">
|
||||
<span ng-if="isDateInCurrentMonth(getDate(btx.time))">
|
||||
Recent
|
||||
</span>
|
||||
|
|
@ -197,7 +197,7 @@
|
|||
<img class="wallet-details__tx-icon" src="img/icon-tx-moved.svg" width="40" ng-if="btx.action == 'moved'">
|
||||
</span>
|
||||
|
||||
<div class="wallet-details__tx-content">
|
||||
<div class="wallet-details__tx-content" ng-class="{'no-border': isLastInGroup($index)}">
|
||||
|
||||
<div class="wallet-details__tx-title" ng-if="!isUnconfirmed(btx)">
|
||||
<div ng-show="btx.action == 'received'" class="ellipsis">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue