Auto-commit local changes before build (2026-01-06 12:23:16) #44

Merged
ivooskamp merged 1 commits from v20260106-10-fix-remarks-indent-bad-gateway into main 2026-01-13 11:08:57 +01:00
3 changed files with 8 additions and 2 deletions

View File

@ -1 +1 @@
v20260106-09-fix-ticket-detail-indent
v20260106-10-fix-remarks-indent-bad-gateway

View File

@ -8,7 +8,6 @@ def remark_detail(remark_id: int):
remark = Remark.query.get_or_404(remark_id)
# Remark editing is disabled. Resolve the old remark and create a new one instead.
return redirect(url_for("main.remark_detail", remark_id=remark.id))
scopes = RemarkScope.query.filter(RemarkScope.remark_id == remark.id).order_by(RemarkScope.id.asc()).all()

View File

@ -72,6 +72,13 @@
- Fixed an IndentationError in routes_tickets.py that prevented the backend from booting (ticket_detail route).
- Removed an accidentally indented redirect line after disabling ticket editing, restoring valid module syntax.
---
## v20260106-10-fix-remarks-indent-bad-gateway
Fixed a Python IndentationError in the remarks detail route that caused Gunicorn to fail on startup.
Removed an incorrectly indented redirect statement so the module loads correctly and prevents Bad Gateway errors.
================================================================================================================================================
## v0.1.16