1
Fork 0
mirror of https://github.com/Steffo99/twom.git synced 2024-11-22 08:04:26 +00:00

Hide supporting content if comment is none

This commit is contained in:
Steffo 2024-01-08 18:14:40 +01:00
parent 7565d511c3
commit 4ab3fa168c
Signed by: steffo
GPG key ID: 2A24051445686895

View file

@ -65,10 +65,12 @@ fun MemberListItem(
) )
}, },
supportingContent = { supportingContent = {
if (rsvpComment != "") {
Text( Text(
text = rsvpComment, text = rsvpComment,
color = colorRole.value, color = colorRole.value,
) )
}
}, },
) )
} }