Skip to content

Commit 6762586

Browse files
authored
Merge pull request #2072 from nextcloud/fix/2065/show-no-participants-label-scheduling-a-metting
fix(schedule-meeting): Show "No participants found" label when scheduling a meeting in a room without participants
2 parents 15b0bfe + 89c2580 commit 6762586

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)