diff --git a/ui/public/index.html b/ui/public/index.html
index 1feb3c33fc4e408ef54d5e61beb940e8272fe343..cc8b5d9d7503b97a7f190ddc77a3cf8db2302258 100644
--- a/ui/public/index.html
+++ b/ui/public/index.html
@@ -55,6 +55,7 @@
           lb_19=" Solo se pueden agregar "
           lb_20=" archivos por vez"
           lb_21=" ya se encuentra sellado en la BFA"
+          lb_22=" Hash de la TX:"
 
         ></div>
       </div>
diff --git a/ui/src/App.vue b/ui/src/App.vue
index 0ad86ba4f30986814501568c724ae480cc560f65..2dc5a5c7b7eb822501d12efabc88754d3b8b29d9 100644
--- a/ui/src/App.vue
+++ b/ui/src/App.vue
@@ -20,7 +20,7 @@
             </div>
             <div v-if="value.status == 'stamped'" class="success-verify alert alert-success" role="alert">
               <p><span class="glyphicon glyphicon-ok" aria-hidden="true"></span> <span v-html="lb_00"></span> <b>{{value.fileName}}</b> <span v-html="lb_01"></span></p>
-              <p>Hash de la TX: <b>{{value.tx_hash}}</b></p>
+              <p><span v-html="lb_22"> <b>{{value.tx_hash}}</b></p>
               <div class="copiar">
               <label class="font_small" v-html="lb_16" :for="'id_'+index"></label>
               <div class="input-group">
@@ -102,6 +102,7 @@
         :lb_19="lb_19"
         :lb_20="lb_20"
         :lb_21="lb_21"
+        :lb_22="lb_22"
         v-if="state == 'visible-drop'"
         v-on:stamp="onStamp" 
         v-on:failed-stamp="onFailedStamp()" 
@@ -142,6 +143,7 @@
            'lb_19',
            'lb_20',
            'lb_21',
+           'lb_22',
           ],
    computed: {
     hash () {
diff --git a/ui/src/main.js b/ui/src/main.js
index bcaa8a9884863d12c1c3a28aef273c8fb2fb653a..8942ade759fbee9e80fa774bab04137cbedfea50 100644
--- a/ui/src/main.js
+++ b/ui/src/main.js
@@ -45,6 +45,7 @@ new Vue({
                 lb_19: this.$el.attributes.lb_19.value,            
                 lb_20: this.$el.attributes.lb_20.value,            
                 lb_21: this.$el.attributes.lb_21.value,
+                lb_22: this.$el.attributes.lb_22.value,
             }
         })
     }