fix(InsertDetailsView): use force flag for getColorHashAsJson to skip ENS check
Closes: #7671
This commit is contained in:
parent
40ce2b6f15
commit
949807d87a
|
@ -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) }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue