The following code seems to fail to list anything in the list view
I assume this isa bug because it seems to work under Xcode 11.5
Code Block var body: some View { List(selection: $controller.selectedObject) { ForEach(self.controller.thumbNails, id:\.self) { object in Group { if hasImage { Text("Image") } else { Text("No Image") } } } }
I assume this isa bug because it seems to work under Xcode 11.5