Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Sources/Validation/View/FeatureDetailView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ struct FeatureDetailView: View {
.aspectRatio(contentMode: .fit)
.frame(minWidth: 300, minHeight: 300)
.frame(maxWidth: .infinity)
.onAppear {
print(image)
}
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions Tests/ValidationTests/JSON/Sample.JSON
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"content": "Just my luck, no ice. You know what? It is beets. I've crashed into a beet truck. Hey, take a look at the earthlings. Goodbye! So you two dig up, dig up dinosaurs? Forget the fat lady! You're obsessed with the fat lady! Drive us out of here! Do you have any idea how long it takes those cups to decompose.",
"createdAt": "2023-02-09",
"id": "DAB58000-2EFA-4590-B0B8-557D8F30FA29",
"images": ["data:one","data:two"],
"images": ["https://raw.githubusercontent.com/JZDesign/Validation/refs/heads/main/docs/img/Main_Screen.png","https://raw.githubusercontent.com/JZDesign/Validation/refs/heads/main/docs/img/Content.png"],
"listRowAccentColor": "#AA3333",
"status": "ideation",
"title": "Mark significant dates"
Expand All @@ -29,7 +29,7 @@
"content": "What do they got in there? King Kong? Remind me to thank John for a lovely weekend. Yes, Yes, without the oops! Do you have any idea how long it takes those cups to decompose. We gotta burn the rain forest, dump toxic waste, pollute the air, and rip up the OZONE! 'Cause maybe if we screw up this planet enough, they won't want it anymore!",
"createdAt": "2023-02-11",
"id": "5556E88C-13C6-477B-8503-355364D993E9",
"images": ["data:one","data:two"],
"images": ["https://raw.githubusercontent.com/JZDesign/Validation/refs/heads/main/docs/img/Main_Screen.png","https://raw.githubusercontent.com/JZDesign/Validation/refs/heads/main/docs/img/Content.png"],
"status": "ideation",
"title": "Widgets and Complications"
},
Expand Down
1 change: 1 addition & 0 deletions Tests/ValidationTests/NewFeatureSerializationTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ extension String {
replacingOccurrences(of: " ", with: "")
.replacingOccurrences(of: "\n", with: "")
.replacingOccurrences(of: ": ", with: ":")
.replacingOccurrences(of: "\\/", with: "/")
}
}