From 597721025224394788cd355ac2ad28f842322f63 Mon Sep 17 00:00:00 2001 From: lavare Date: Mon, 26 Jun 2023 16:44:25 +0800 Subject: [PATCH] Panel parsing visionOS field --- Xcodes/Frontend/InfoPane/InfoPane.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/Xcodes/Frontend/InfoPane/InfoPane.swift b/Xcodes/Frontend/InfoPane/InfoPane.swift index 88195da..3842a55 100644 --- a/Xcodes/Frontend/InfoPane/InfoPane.swift +++ b/Xcodes/Frontend/InfoPane/InfoPane.swift @@ -180,6 +180,7 @@ struct InfoPane: View { ("iOS", \.iOS), ("watchOS", \.watchOS), ("tvOS", \.tvOS), + ("visionOS", \.visionOS), ], id: \.0) { row in if let sdk = sdks[keyPath: row.1] { Text("\(row.0): \(sdk.compactMap { $0.number }.joined(separator: ", "))")