From d73203a03b09d49488d86d266d012f493150451b Mon Sep 17 00:00:00 2001
From: Benoit Lavenier <benoit.lavenier@e-is.pro>
Date: Mon, 23 Dec 2019 16:59:45 +0100
Subject: [PATCH] [fix] Identity TX: fix title

---
 www/templates/wot/view_identity_tx.html | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/www/templates/wot/view_identity_tx.html b/www/templates/wot/view_identity_tx.html
index 8c90520c..1db23ab9 100644
--- a/www/templates/wot/view_identity_tx.html
+++ b/www/templates/wot/view_identity_tx.html
@@ -1,6 +1,9 @@
 <ion-view left-buttons="leftButtons">
   <ion-nav-title>
-    <span class="visible-xs visible-sm">{{::formData.name||formData.uid||(formData.pubkey|formatPubkey)}}</span>
+    <span class="visible-xs visible-sm" ng-if="!loading">
+      <span ng-if="formData.name || formData.uid">{{formData.name || formData.uid}} </span>
+      <i class="ion-key"></i> {{formData.pubkey|formatPubkey}}
+    </span>
     <span class="hidden-xs hidden-sm"
           ng-if="!loading">
       <ng-if ng-if="formData.name || formData.uid">{{'WOT.OPERATIONS.TITLE'|translate: {uid: formData.name || formData.uid} }}</ng-if>
-- 
GitLab