Show source of missing page links

This commit is contained in:
Christoph Hagen
2025-05-04 11:47:20 +02:00
parent dd720d6646
commit d6502fb09c
3 changed files with 26 additions and 1 deletions

View File

@ -31,3 +31,10 @@ extension LocalizedItemId: Comparable {
return lhs.language < rhs.language
}
}
extension LocalizedItemId: CustomStringConvertible {
var description: String {
"\(itemType) (\(language))"
}
}