implementing board view; set add comment section above the displayed comments in the details page; delete confirmation window; open same details page from board view; make assignee button more obvious

This commit is contained in:
viljarb
2026-03-03 20:44:16 +01:00
parent eef3b4849d
commit 8593f7fdc4

View File

@@ -46,7 +46,7 @@ templ IssueDetail(props IssueDetailProps) {
hx-swap="innerHTML"
>
if props.Issue.Assignee == "" {
<span>Unassigned (click to assign)</span>
<span>Unassigned (click to assign) </span>
} else {
<span>Assignee: { props.Issue.Assignee }</span>
}