Skip to content

Commit db58f41

Browse files
LunarXKevinBoulongne
authored andcommitted
Hide attendance buttons as long as they're not implemented
1 parent affbe0a commit db58f41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/main/java/com/infomaniak/mail/ui/main/thread/calendar/CalendarEventBannerView.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ class CalendarEventBannerView @JvmOverloads constructor(
114114
private fun setAttendees(attendees: RealmList<Attendee>) = with(binding) {
115115
val iAmPartOfAttendees = attendees.any { it.isMe() }
116116
notPartOfAttendeesWarning.isGone = iAmPartOfAttendees
117-
participationButtons.isVisible = iAmPartOfAttendees
117+
participationButtons.isVisible = iAmPartOfAttendees && false // TODO : Display this when buttons click are implemented
118118
attendeesLayout.isGone = attendees.isEmpty()
119119

120120
displayOrganizer(attendees)

0 commit comments

Comments
 (0)