Skip to content

Commit 76a08e6

Browse files
committed
Merge branch 'develop'
2 parents bb5687a + c928ca2 commit 76a08e6

20 files changed

+60
-35
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.3",
3+
"version": "0.83.4",
44
"private": true,
55
"author": "Liquality <info@liquality.io>",
66
"scripts": {

src/components/CustomRpcSettingsForm.vue

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ export default {
9292
walletId: this.activeWalletId,
9393
chainId,
9494
chanifyNetwork: {
95-
custom: true,
9695
...network,
96+
custom: true,
9797
explorerUrl: this.formData.explorerUrl,
9898
rpcUrl: this.formData.newRpcUrl
9999
}
@@ -102,9 +102,7 @@ export default {
102102
await this.saveCustomChainSettings(payload)
103103
},
104104
getBaseUrl(url, custom = true) {
105-
if (custom === true) {
106-
return url
107-
}
105+
if (custom) return url
108106
109107
const pathArray = url.split('/'),
110108
protocol = pathArray[0],

src/components/NavBar.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,9 @@ export default {
115115
...mapState(['experiments', 'activeNetwork']),
116116
...mapGetters('app', ['isSettingsModalOpen']),
117117
...mapGetters(['accountItem']),
118+
currentRoutePath() {
119+
return this.$route.path
120+
},
118121
account() {
119122
if (this.$route.params.accountId) {
120123
return this.accountItem(this.$route.params.accountId)
@@ -219,7 +222,7 @@ export default {
219222
}
220223
})
221224
this.showMenuList = false
222-
this.$router.replace('/accounts/management')
225+
this.$router.replace({ name: 'ManageAccounts', params: { from: this.currentRoutePath } })
223226
},
224227
ledger() {
225228
this.trackAnalytics({

src/locales/cb/pages.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,9 @@
8787
"blockExplorerUrl": "Block explorer URL (optional)",
8888
"save": "Save",
8989
"default": "Default"
90-
}
90+
},
91+
"manageAccounts": "Manage Accounts",
92+
"manageAccountsSub": "Create more addresses for each network and edit their names."
9193
},
9294
"experiments": {
9395
"experiments": "Experiments",

src/locales/cb/whats_new.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@
33
"page": "1",
44
"title": "What's New?",
55
"content": [
6-
"Fixes for send NFT on Solana and Arbitrum",
7-
"Fix for Polygon's new minimum miner tip / priority fee",
8-
"Fix for Optimism chainId error"
6+
"Fixes for Thorchain cross-chain Swaps (ETH<=>BTC)"
97
]
108
},
119
{

src/locales/en/pages.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,9 @@
8787
"blockExplorerUrl": "Block explorer URL (optional)",
8888
"save": "Save",
8989
"default": "Default"
90-
}
90+
},
91+
"manageAccounts": "Manage Accounts",
92+
"manageAccountsSub": "Create more addresses for each network and edit their names."
9193
},
9294
"experiments": {
9395
"experiments": "Experiments",

src/locales/en/whats_new.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@
33
"page": "1",
44
"title": "What's New?",
55
"content": [
6-
"Fixes for send NFT on Solana and Arbitrum",
7-
"Fix for Polygon's new minimum miner tip / priority fee",
8-
"Fix for Optimism chainId error"
6+
"Fixes for Thorchain cross-chain Swaps (ETH<=>BTC)"
97
]
108
},
119
{

src/locales/es/pages.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,9 @@
8787
"blockExplorerUrl": "Block explorer URL (optional)",
8888
"save": "Save",
8989
"default": "Default"
90-
}
90+
},
91+
"manageAccounts": "Manage Accounts",
92+
"manageAccountsSub": "Create more addresses for each network and edit their names."
9193
},
9294
"experiments": {
9395
"experiments": "Experimentos",

src/locales/es/whats_new.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@
33
"page": "1",
44
"title": "What's New?",
55
"content": [
6-
"Fixes for send NFT on Solana and Arbitrum",
7-
"Fix for Polygon's new minimum miner tip / priority fee",
8-
"Fix for Optimism chainId error"
6+
"Fixes for Thorchain cross-chain Swaps (ETH<=>BTC)"
97
]
108
},
119
{

src/locales/ph/pages.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,9 @@
8787
"blockExplorerUrl": "Block explorer URL (optional)",
8888
"save": "Save",
8989
"default": "Default"
90-
}
90+
},
91+
"manageAccounts": "Manage Accounts",
92+
"manageAccountsSub": "Create more addresses for each network and edit their names."
9193
},
9294
"experiments": {
9395
"experiments": "Mga eksperimento",

0 commit comments

Comments
 (0)