Skip to content
Snippets Groups Projects
Commit ac88ac7b authored by Benoit Lavenier's avatar Benoit Lavenier
Browse files

- Block: Fix TX when many recipients, or many issuers

parent e0cb2991
No related branches found
No related tags found
No related merge requests found
...@@ -278,19 +278,22 @@ ...@@ -278,19 +278,22 @@
<div ng-repeat="tx in ::formData.transactions" <div ng-repeat="tx in ::formData.transactions"
class="item item-small-height item-border-large"> class="item item-small-height item-border-large">
<div class="row no-padding" style="padding-top: 3px;"> <div class="row no-padding" style="padding-top: 3px;">
<div class="col col-40 no-padding"> <div class="col col-40 col-center no-padding list">
<ng-include ng-repeat="identity in ::tx.issuers" src="'templates/blockchain/link_identity.html'"></ng-include> <div ng-repeat="identity in ::tx.issuers" class="item no-padding item-small-height">
<ng-include src="'templates/blockchain/link_identity.html'"></ng-include>
</div>
</div> </div>
<div class="col col-10 gray text-center no-padding"> <div class="col col-10 col-center gray text-center no-padding">
<h2><i class="icon ion-arrow-right-a"></i></h2> <h2><i class="icon ion-arrow-right-a"></i></h2>
</div> </div>
<!-- recipients --> <!-- recipients -->
<div class="col no-padding padding-right no-padding-xs col-text-wrap"> <div class="col no-padding padding-right no-padding-xs col-text-wrap list">
<ng-repeat ng-repeat="output in ::tx.outputs"> <div ng-repeat="output in ::tx.outputs" class="item no-padding item-small-height">
<ng-include src="'templates/blockchain/link_identity.html'" onload="identity=output"></ng-include> <ng-include src="'templates/blockchain/link_identity.html'" onload="identity=output"></ng-include>
<br/>
<span class="badge badge-balanced" <span class="badge badge-balanced"
ng-bind-html="::output.amount | formatAmount:{currency: formData.currency, useRelative: false} "></span> ng-bind-html="::output.amount | formatAmount:{currency: formData.currency, useRelative: false} "></span>
</ng-repeat> </div>
</div> </div>
</div> </div>
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment