chore(StatusChatList): use colorId if color is not provided

This commit is contained in:
Patryk Osmaczko 2022-04-07 21:16:03 +02:00 committed by Michał Cieślak
parent 60946e66a7
commit 2884b49b36
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ Column {
selected: model.active selected: model.active
icon.emoji: model.emoji icon.emoji: model.emoji
icon.color: model.color icon.color: !!model.color ? model.color : Theme.palette.userCustomizationColors[model.colorId]
image.isIdenticon: false image.isIdenticon: false
image.source: model.icon image.source: model.icon
ringSettings.ringSpecModel: model.colorHash ringSettings.ringSpecModel: model.colorHash