Skip to content

Commit

Permalink
Hide attendance buttons as long as they're not implemented
Browse files Browse the repository at this point in the history
  • Loading branch information
LunarX authored and KevinBoulongne committed Jan 23, 2024
1 parent affbe0a commit db58f41
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ class CalendarEventBannerView @JvmOverloads constructor(
private fun setAttendees(attendees: RealmList<Attendee>) = with(binding) {
val iAmPartOfAttendees = attendees.any { it.isMe() }
notPartOfAttendeesWarning.isGone = iAmPartOfAttendees
participationButtons.isVisible = iAmPartOfAttendees
participationButtons.isVisible = iAmPartOfAttendees && false // TODO : Display this when buttons click are implemented
attendeesLayout.isGone = attendees.isEmpty()

displayOrganizer(attendees)
Expand Down

0 comments on commit db58f41

Please sign in to comment.