adjust layout and add detials button

This commit is contained in:
Robin Olsen
2026-02-25 12:39:21 +01:00
parent 1438d0e567
commit 6264f9dfc9
10 changed files with 101 additions and 169 deletions

View File

@@ -219,7 +219,7 @@ func IssueForm(props IssueFormProps) templ.Component {
}
type IssueTableProps struct {
Issues []models.Issue
Issues []*models.Issue
}
func IssueTable(props IssueTableProps) templ.Component {
@@ -263,7 +263,7 @@ func IssueTable(props IssueTableProps) templ.Component {
})
}
func IssueRows(issues []models.Issue) templ.Component {
func IssueRows(issues []*models.Issue) templ.Component {
return templruntime.GeneratedTemplate(func(templ_7745c5c3_Input templruntime.GeneratedComponentInput) (templ_7745c5c3_Err error) {
templ_7745c5c3_W, ctx := templ_7745c5c3_Input.Writer, templ_7745c5c3_Input.Context
if templ_7745c5c3_CtxErr := ctx.Err(); templ_7745c5c3_CtxErr != nil {