fix(InsertDetailsView): use force flag for getColorHashAsJson to skip ENS check

Closes: #7671
This commit is contained in:
Michał Cieślak 2022-10-03 10:50:24 +02:00 committed by Iuri Matias
parent 40ce2b6f15
commit 949807d87a
1 changed files with 2 additions and 2 deletions

View File

@ -97,7 +97,7 @@ Item {
asset.isImage: !!asset.name asset.isImage: !!asset.name
asset.imgIsIdenticon: false asset.imgIsIdenticon: false
ringSettings { ringSettings {
ringSpecModel: Utils.getColorHashAsJson(root.pubKey) ringSpecModel: Utils.getColorHashAsJson(root.pubKey, true)
} }
} }
StatusRoundButton { StatusRoundButton {
@ -198,7 +198,7 @@ Item {
asset.width: 44 asset.width: 44
asset.height: 44 asset.height: 44
asset.color: "transparent" asset.color: "transparent"
ringSettings { ringSpecModel: Utils.getColorHashAsJson(root.pubKey) } ringSettings { ringSpecModel: Utils.getColorHashAsJson(root.pubKey, true) }
} }
} }