adding blocked status to web

This commit is contained in:
viljarb
2026-03-12 13:03:35 +01:00
parent c907b8b402
commit cc1158e80d
5 changed files with 33 additions and 20 deletions

View File

@@ -57,6 +57,7 @@ templ IssueForm(props IssueFormProps) {
Options: []base.SelectOption{
{Label: "Open", Value: "open", Selected: props.Status == "open"},
{Label: "In Progress", Value: "in_progress", Selected: props.Status == "in_progress"},
{Label: "Blocked", Value: "blocked", Selected: props.Status == "blocked"},
{Label: "Ready to sprint", Value: "ready_to_sprint", Selected: props.Status == "ready_to_sprint"},
{Label: "Closed", Value: "closed", Selected: props.Status == "closed"},
},