Skip to content

Commit 1495268

Browse files
authored
Merge pull request #2075 from nextcloud/backport/2072/stable21
[stable21] fix(schedule-meeting): Show "No participants found" label when scheduling a meeting in a room without participants
2 parents 51dd390 + 3a8ee00 commit 1495268

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

NextcloudTalk/ScheduleMeetingSwiftUIView.swift

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -322,6 +322,11 @@ struct SelectParticipantsView: View {
322322
}
323323
}
324324
.navigationTitle("Meeting attendees")
325+
.overlay {
326+
if selectedParticipants.isEmpty {
327+
Text("No participants found").foregroundStyle(.secondary)
328+
}
329+
}
325330
}
326331
}
327332

0 commit comments

Comments
 (0)