Skip to content

Commit f6f8282

Browse files
committed
feat: implement account edit screen
1 parent 0c9c126 commit f6f8282

File tree

13 files changed

+308
-24
lines changed

13 files changed

+308
-24
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "liquality-wallet",
3-
"version": "0.83.1",
3+
"version": "0.83.2",
44
"private": true,
55
"author": "Liquality <info@liquality.io>",
66
"scripts": {
@@ -29,7 +29,7 @@
2929
"@liquality/ethereum-utils": "^1.13.12",
3030
"@liquality/terra-networks": "^1.13.12",
3131
"@liquality/types": "^1.13.12",
32-
"@liquality/wallet-core": "4.6.0",
32+
"@liquality/wallet-core": "4.8.0",
3333
"@terra-money/terra.js": "^3.1.6",
3434
"@testing-library/vue": "^5.8.2",
3535
"amplitude-js": "8.18.2",

src/assets/icons/edit_icon.svg

Lines changed: 21 additions & 0 deletions
Loading

src/locales/cb/pages.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@
163163
"eyeInstructions": "Ipahilayo kini gikan sa mga mata sa uban!",
164164
"exportLedger": "Dili ma-export gikan sa usa ka Ledger account",
165165
"createAccount": "Paghimo og Account",
166+
"editAccount": "Edit Account",
166167
"selectNetwork": "Pili ug Network",
167168
"chooseAccountName": "Pilia ang Ngalan sa Account",
168169
"accountAliasErrorFiveChars": "Ang ngalan kinahanglan adunay 5 o labaw pa nga mga karakter",

src/locales/en/pages.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@
163163
"eyeInstructions": "Keep this away from prying eyes!",
164164
"exportLedger": "Cannot export from a Ledger account",
165165
"createAccount": "Create Account",
166+
"editAccount": "Edit Account",
166167
"selectNetwork": "Select Network",
167168
"chooseAccountName": "Choose Account Name",
168169
"accountAliasErrorFiveChars": "Name should have 5 or more characters",

src/locales/es/pages.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@
163163
"eyeInstructions": "¡Mantén esto alejado de miradas indiscretas!",
164164
"exportLedger": "No se puede exportar de una cuenta de Ledger",
165165
"createAccount": "Crear Cuenta",
166+
"editAccount": "Editar Cuenta",
166167
"selectNetwork": "Selecionar Red",
167168
"chooseAccountName": "Elige un Nombre de Cuenta",
168169
"accountAliasErrorFiveChars": "El nombre debe tener 5 o más caracteres",

src/locales/ph/pages.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@
163163
"eyeInstructions": "Maging mapagmatyag sa mga nanunuod sa paligid",
164164
"exportLedger": "Hindi ma-export mula sa isang Ledger account",
165165
"createAccount": "Gumawa ng Account",
166+
"editAccount": "Edit Account",
166167
"selectNetwork": "Pumili ng Network",
167168
"chooseAccountName": "Pumili ng Account Name",
168169
"accountAliasErrorFiveChars": "Dapat may 5 o higit pang character ang pangalan",

src/locales/pt/pages.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@
163163
"eyeInstructions": "Mantenha a salvo!",
164164
"exportLedger": "Não é possível exportar de uma conta Ledger",
165165
"createAccount": "Criar Conta",
166+
"editAccount": "Edit Account",
166167
"selectNetwork": "Selecionar Rede",
167168
"chooseAccountName": "Escolha o Nome da Conta",
168169
"accountAliasErrorFiveChars": "O nome deve ter 5 ou mais caracteres",

src/locales/zh/pages.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@
163163
"eyeInstructions": "别让他人看到",
164164
"exportLedger": "不能从Ledger账户导出",
165165
"createAccount": "创建新账户",
166+
"editAccount": "Edit Account",
166167
"selectNetwork": "选择网络",
167168
"chooseAccountName": "选择账户名称",
168169
"accountAliasErrorFiveChars": "名称至少5位字符",

src/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"manifest_version": 2,
3-
"version": "0.83.1",
3+
"version": "0.83.2",
44
"name": "__MSG_appName__",
55
"description": "__MSG_appDesc__",
66
"default_locale": "en",

src/router/index.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,13 @@ const routes = [
172172
props: true,
173173
meta: { protect: true }
174174
},
175+
{
176+
path: '/accounts/edit/:accountId?',
177+
component: () => import('@/views/Accounts/Edit.vue'),
178+
name: 'EditAccount',
179+
props: true,
180+
meta: { protect: true }
181+
},
175182
{
176183
path: '/accounts/hardware-wallet',
177184
component: () => import('@/views/Accounts/HardwareWallet/HardwareWallet.vue'),

0 commit comments

Comments
 (0)