We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent affbe0a commit db58f41Copy full SHA for db58f41
app/src/main/java/com/infomaniak/mail/ui/main/thread/calendar/CalendarEventBannerView.kt
@@ -114,7 +114,7 @@ class CalendarEventBannerView @JvmOverloads constructor(
114
private fun setAttendees(attendees: RealmList<Attendee>) = with(binding) {
115
val iAmPartOfAttendees = attendees.any { it.isMe() }
116
notPartOfAttendeesWarning.isGone = iAmPartOfAttendees
117
- participationButtons.isVisible = iAmPartOfAttendees
+ participationButtons.isVisible = iAmPartOfAttendees && false // TODO : Display this when buttons click are implemented
118
attendeesLayout.isGone = attendees.isEmpty()
119
120
displayOrganizer(attendees)
0 commit comments