From 2aa5a52a53e481c97bc6d075be056fac4ae1de8a Mon Sep 17 00:00:00 2001 From: Renzo Ontivero / Ultima Milla SA <rontivero@ultimamillasa.com.ar> Date: Tue, 22 Oct 2019 17:06:02 +0000 Subject: [PATCH] Corrigiendo "Wording como atributo de la app en el HTML" --- ui/public/index.html | 1 + ui/src/App.vue | 4 +++- ui/src/main.js | 1 + 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ui/public/index.html b/ui/public/index.html index 1feb3c3..cc8b5d9 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 0ad86ba..2dc5a5c 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 bcaa8a9..8942ade 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, } }) } -- GitLab