Show source of missing page links
This commit is contained in:
@ -110,7 +110,13 @@ struct GenerationContentView: View {
|
||||
items: content.results.missingTags)
|
||||
GenerationStringIssuesView(
|
||||
text: "missing pages",
|
||||
items: content.results.missingPages)
|
||||
items: content.results.missingPages) { pageId in
|
||||
let sources = content.results.sources(forMissingPage: pageId)
|
||||
.map { "\($0.page): \($0.source)"}
|
||||
.joined(separator: ", ")
|
||||
|
||||
return "\(pageId) (\(sources))"
|
||||
}
|
||||
GenerationStringIssuesView(
|
||||
text: "invalid commands",
|
||||
items: content.results.invalidCommands)
|
||||
|
Reference in New Issue
Block a user