Skip to content

Commit 8081476

Browse files
committed
fix: fixed permission sign screen for eip 712 and v1
1 parent 39e233c commit 8081476

File tree

16 files changed

+143
-21
lines changed

16 files changed

+143
-21
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "liquality-wallet",
3-
"version": "0.83.6",
3+
"version": "0.83.7",
44
"private": true,
55
"author": "Liquality <info@liquality.io>",
66
"scripts": {

src/components/Modal.vue

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<h5 class="modal-title" v-else-if="hasSlot('title')">
2525
<slot name="title"></slot>
2626
</h5>
27-
<ModalClose class="modal-close" @click="close" :id="closeId" />
27+
<ModalClose class="modal-close" @click="close" :id="closeId" v-if="showClose" />
2828
</div>
2929
<div :class="bodyClass">
3030
<slot></slot>
@@ -68,6 +68,10 @@ export default {
6868
closeId: {
6969
type: String,
7070
required: false
71+
},
72+
showClose: {
73+
type: Boolean,
74+
default: true
7175
}
7276
},
7377
methods: {

src/locales/cb/common.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
{
2+
"error": "Error",
3+
"warning": "Warning",
24
"cancel": "I-kansel",
35
"create": "Paghimo",
46
"type": "Type",

src/locales/cb/pages.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,10 @@
221221
"myWallet": "Imohang Wallet",
222222
"signTransaction": "Pirmahi ang Transaksyon",
223223
"requestToSign": "Paghangyo sa Pagpirma",
224-
"request": "Request"
224+
"request": "Request",
225+
"chainIdErrorNetwork": "This site %{origin} is requesting a signature for the network %{network}",
226+
"chainIdErrorRequestedChainId": "Requested chainId %{chainId}",
227+
"chainIdErrorRequestedAsset": "Requested asset: %{asset}"
225228
},
226229
"send": {
227230
"sendTo": "Ipadala Sa",

src/locales/en/common.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
{
2+
"error": "Error",
3+
"warning": "Warning",
24
"cancel": "Cancel",
35
"create": "Create",
46
"type": "Type",

src/locales/en/pages.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,10 @@
221221
"myWallet": "My Wallet",
222222
"signTransaction": "Sign Transaction",
223223
"requestToSign": "Request to Sign",
224-
"request": "Request"
224+
"request": "Request",
225+
"chainIdErrorNetwork": "This site %{origin} is requesting a signature for the network %{network}",
226+
"chainIdErrorRequestedChainId": "Requested chainId %{chainId}",
227+
"chainIdErrorRequestedAsset": "Requested asset: %{asset}"
225228
},
226229
"send": {
227230
"sendTo": "Send to",

src/locales/es/common.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
{
2+
"error": "Error",
3+
"warning": "Warning",
24
"cancel": "Cancelar",
35
"create": "Crear",
46
"type": "Tipo",

src/locales/es/pages.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,10 @@
221221
"myWallet": "Mi Cartera",
222222
"signTransaction": "Firmar Transacción",
223223
"requestToSign": "Solicitud de Firma",
224-
"request": "Solicitud"
224+
"request": "Solicitud",
225+
"chainIdErrorNetwork": "This site %{origin} is requesting a signature for the network %{network}",
226+
"chainIdErrorRequestedChainId": "Requested chainId %{chainId}",
227+
"chainIdErrorRequestedAsset": "Requested asset: %{asset}"
225228
},
226229
"send": {
227230
"sendTo": "Enviar a",

src/locales/ph/common.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
{
2+
"error": "Error",
3+
"warning": "Warning",
24
"cancel": "Kanselahin",
35
"create": "Gumawa",
46
"type": "Uri",

src/locales/ph/pages.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,10 @@
221221
"myWallet": "Aking Wallet",
222222
"signTransaction": "I-sign ang Transaksyon",
223223
"requestToSign": "Kahilingan na Pumirma",
224-
"request": "Kahilingan"
224+
"request": "Kahilingan",
225+
"chainIdErrorNetwork": "This site %{origin} is requesting a signature for the network %{network}",
226+
"chainIdErrorRequestedChainId": "Requested chainId %{chainId}",
227+
"chainIdErrorRequestedAsset": "Requested asset: %{asset}"
225228
},
226229
"send": {
227230
"sendTo": "Ipadala sa",

0 commit comments

Comments
 (0)