1
Fork 0
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:
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 = {
Text( if (rsvpComment != "") {
text = rsvpComment, Text(
color = colorRole.value, text = rsvpComment,
) color = colorRole.value,
)
}
}, },
) )
} }