Skip to content

Commit

Permalink
Fix null reference bug for new accounts in new wallets
Browse files Browse the repository at this point in the history
  • Loading branch information
sondreb committed Jul 10, 2023
1 parent 240bd37 commit 0dce440
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<mat-icon [ngClass]="{'large-icon': large}" [style.color]="value.color" [style.fill]="value.color">{{ value.icon }}</mat-icon>
<mat-icon [ngClass]="{'large-icon': large}" [style.color]="value?.color" [style.fill]="value?.color">{{ value?.icon }}</mat-icon>
2 changes: 1 addition & 1 deletion angular/src/manifest/blockcore/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Blockcore Wallet",
"version": "1.0.30",
"version": "1.0.31",
"manifest_version": 3,
"description": "Non-Custodial wallet for Coins, Tokens, Identities, NFTs and more.",
"author": "Blockcore",
Expand Down
2 changes: 1 addition & 1 deletion angular/src/manifest/blockcore/manifest.webmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"start_url": "./",
"name": "Blockcore Wallet",
"short_name": "Blockcore",
"version": "1.0.30",
"version": "1.0.31",
"author": "Blockcore",
"display": "standalone",
"theme_color": "#22a893",
Expand Down
2 changes: 1 addition & 1 deletion angular/src/manifest/coinvault/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "CoinVault",
"version": "1.0.30",
"version": "1.0.31",
"manifest_version": 3,
"description": "Non-Custodial wallet for Stratis, Cirrus, NFTs and more.",
"author": "Softchains Ltd",
Expand Down
2 changes: 1 addition & 1 deletion angular/src/manifest/coinvault/manifest.webmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"start_url": "./",
"name": "CoinVault",
"short_name": "CoinVault",
"version": "1.0.30",
"version": "1.0.31",
"author": "Softchains Ltd",
"display": "standalone",
"theme_color": "#206997",
Expand Down
2 changes: 1 addition & 1 deletion angular/src/manifest/smartcityplatform/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Smart City Platform",
"version": "1.0.30",
"version": "1.0.31",
"manifest_version": 3,
"description": "Manage your citizenship, identity, properties, social network and more.",
"author": "City Chain Foundation",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"start_url": "./",
"name": "Smart City Platform",
"short_name": "SmartCityPlatform",
"version": "1.0.30",
"version": "1.0.31",
"author": "City Chain Foundation",
"display": "standalone",
"theme_color": "#DFAB3C",
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "blockcore-wallet",
"version": "1.0.30",
"version": "1.0.31",
"description": "An Non-Custodial HD wallet in your browser for Coins, Tokens, Identities, NFTs and more",
"scripts": {
"version": "node -p \"require('./package.json').version\"",
Expand Down

0 comments on commit 0dce440

Please sign in to comment.