Skip to content
Snippets Groups Projects
Commit 7e294188 authored by Oliver Wiese's avatar Oliver Wiese
Browse files

fix inbox bug #275

parent df54d15d
No related branches found
No related tags found
3 merge requests!58Onboarding screens swift ui merge dev,!55WIP: Resolve "UI for gamifcation & stats",!47Provisional fix for OpenSSL 1.1+, needs testing
......@@ -43,11 +43,9 @@ struct Inbox: View {
}
private var mailList: some View {
List {
ForEach(self.keyrecords.filter(filterKeyRecord), id: \.self){
record in
KeyRecordRow(keyrecord: record, coord: self.coord)
}
List (self.keyrecords.filter(filterKeyRecord), id: \.self){
record in
KeyRecordRow(keyrecord: record, coord: self.coord)
}
.resignKeyboardOnDragGesture() // hide keyboard when dragging
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment