mirror of
https://github.com/Steffo99/twom.git
synced 2024-11-21 23:54:26 +00:00
Hide supporting content if comment is none
This commit is contained in:
parent
7565d511c3
commit
4ab3fa168c
1 changed files with 6 additions and 4 deletions
|
@ -65,10 +65,12 @@ fun MemberListItem(
|
|||
)
|
||||
},
|
||||
supportingContent = {
|
||||
Text(
|
||||
text = rsvpComment,
|
||||
color = colorRole.value,
|
||||
)
|
||||
if (rsvpComment != "") {
|
||||
Text(
|
||||
text = rsvpComment,
|
||||
color = colorRole.value,
|
||||
)
|
||||
}
|
||||
},
|
||||
)
|
||||
}
|
Loading…
Reference in a new issue