Templates angepasst

This commit is contained in:
Simon Martens
2024-12-23 22:11:35 +01:00
parent d8892941a6
commit 4de0eab443
4 changed files with 10 additions and 10 deletions

View File

@@ -29,7 +29,7 @@ type IssueVM struct {
}
func NewSingleIssueView(y string, no string, lib *xmlprovider.Library) (*IssueVM, error) {
issue := lib.Issues.Item(y + "-" + no)
issue := lib.Issues.Item(no + "-" + y)
if issue == nil {
return nil, fmt.Errorf("No issue found for %v-%v", y, no)
}