Skip to content

Commit

Permalink
Fixed #210
Browse files Browse the repository at this point in the history
  • Loading branch information
poonwu committed Oct 18, 2016
1 parent dfcfb2d commit 00c0d74
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/view/brand-transaction-detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ <h2>รายละเอียดการสั่งซื้อ</h2>
</div>
<div class="card-info-content">
<span class="color-yellow" ng-if="!isExpired() && transaction.status == 'Pending'"><i class="fa fa-clock-o"></i> รอการชำระเงิน</span>
<span class="color-green" ng-if="!isExpired() && transaction.status == 'Complete'"><i class="fa fa-check-circle-o"></i> ชำระแล้ว</span>
<span class="color-grey" ng-if="isExpired()"><i class="fa fa-ban"></i> หมดอายุ</span>
<span class="color-green" ng-if="transaction.status == 'Complete'"><i class="fa fa-check-circle-o"></i> ชำระแล้ว</span>
<span class="color-grey" ng-if="isExpired() && transaction.status !== 'Complete'"><i class="fa fa-ban"></i> หมดอายุ</span>
</div>
</div>
<div class="card-info" ng-if="!isExpired() && transaction.status == 'Pending'">
Expand Down

0 comments on commit 00c0d74

Please sign in to comment.