fix: pass UUID as String for download properties WindowGroup to prevent routing failures

This commit is contained in:
nimbold
2026-06-08 00:11:23 +03:30
parent bd6aa867c7
commit 01ba9c4c9b
3 changed files with 24 additions and 3 deletions
+1 -1
View File
@@ -165,7 +165,7 @@ struct DownloadTable: View {
if item.status == .completed {
openFile(item)
} else {
openWindow(id: "download-properties", value: item.id)
openWindow(id: "download-properties", value: item.id.uuidString)
}
}