fix: status update not using the right component
This commit is contained in:
parent
b773766055
commit
9026108e86
|
@ -115,8 +115,9 @@ Item {
|
|||
case Constants.communityInviteType:
|
||||
return invitationBubble
|
||||
default:
|
||||
return appSettings.compactMode ? compactMessageComponent :
|
||||
isStatusUpdate ? statusUpdateComponent : messageComponent
|
||||
return isStatusUpdate ? statusUpdateComponent :
|
||||
(appSettings.compactMode ? compactMessageComponent : messageComponent)
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue