Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion locale/zh_CN/app.utils.json
Original file line number Diff line number Diff line change
Expand Up @@ -694,7 +694,7 @@
"backupPhrase": "备份短语",
"base58Seed": "编码备份短语",
"encodedSeed": "编码的SEED",
"id": "Account ID",
"id": "帐户ID",
"privateKey": "私钥",
"publicKey": "公钥",
"script": "脚本",
Expand Down
2 changes: 1 addition & 1 deletion locale/zh_CN/app.welcome.json
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@
}
},
"userList": {
"addNew": "添加一个帐号",
"addNew": "新增帐户",
"back": "返回",
"create": "创建新的帐号",
"frombackup": "备份",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "waves-client",
"version": "1.4.0",
"version": "1.4.1",
"description": "The official client application for the Waves platform",
"private": true,
"repository": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
class confirmDeleteUserCtrl {

constructor(locals) {
this.hasBackup = locals.user.settings.hasBackup;
this.hasBackup = locals.user.settings ? locals.user.settings.hasBackup : false;
this.isSeed = !locals.user.userType || locals.user.userType === 'seed';
this.isLedger = locals.user.userType === 'ledger';
this.isKeeper = locals.user.userType === 'wavesKeeper';
Expand Down