fix bug with edit modal and remove depricated ready_to_sprint status

This commit is contained in:
Robin Olsen
2026-03-24 12:33:24 +01:00
parent 6808ed3bbe
commit e4880279c4
15 changed files with 127 additions and 123 deletions

View File

@@ -31,10 +31,9 @@ templ DependenciesList(props DependenciesListProps) {
</span>
<button
class="btn btn-xs btn-ghost text-error"
hx-delete={ "/issues/" + props.IssueID + "/dependencies?container_id=" + url.QueryEscape(props.ContainerID) }
hx-delete={ "/issues/" + props.IssueID + "/dependencies?container_id=" + url.QueryEscape(props.ContainerID) + "&depends_on_id=" + url.QueryEscape(d.ID) }
hx-target={ "#" + props.ContainerID }
hx-swap="innerHTML"
hx-vals={ `{"depends_on_id":"` + d.ID + `"}` }
hx-swap="outerHTML"
>
Remove
</button>