From 30626a0fdd9a2aa1eb412e2f158d4ac1b9ae15a5 Mon Sep 17 00:00:00 2001
From: blavenie <benoit.lavenier@e-is.pro>
Date: Wed, 22 Feb 2017 16:47:11 +0100
Subject: [PATCH]  Block view: excluded pubkeys not visible - fix #352

---
 www/templates/blockchain/view_block.html | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/www/templates/blockchain/view_block.html b/www/templates/blockchain/view_block.html
index 157e80e86..f3c82e694 100644
--- a/www/templates/blockchain/view_block.html
+++ b/www/templates/blockchain/view_block.html
@@ -192,7 +192,7 @@
           </ng-if>
 
           <!-- excluded -->
-          <ng-if ng-if="!compactMode || (formData.leaversCount-formData.revokedCount)">
+          <ng-if ng-if="!compactMode || (formData.excludedCount-formData.revokedCount)">
             <ion-item class="item-icon-left" >
               <i class="icon ion-person"></i>
               <b class="ion-close dark" style="position: absolute; top: 25px; left: 39px; font-size: 12px;"></b>
@@ -202,8 +202,8 @@
               <span class="badge badge-stable" ng-if="!(formData.excludedCount-formData.revokedCount)">0</span>
             </ion-item>
 
-            <div class="padding-bottom item-icon-left-padding item-icon-right-padding" ng-if="formData.revokedCount">
-              <ion-item ng-repeat="identity in ::formData.revoked"
+            <div class="padding-bottom item-icon-left-padding item-icon-right-padding" ng-if="formData.excludedCount">
+              <ion-item ng-repeat="identity in ::formData.excluded"
                         class="item-border-large item-small-height"
                         ng-include="'templates/blockchain/link_identity.html'">
               </ion-item>
-- 
GitLab