Compare commits

..

No commits in common. "bedfbde1b06935f2de09f2b2d9d3dd20af58b4e0" and "9d2ef99cf9857dc2de65e1cee165ad6a4a1bc9ac" have entirely different histories.

3 changed files with 2 additions and 8 deletions

View File

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

View File

@ -8,6 +8,7 @@ def remark_detail(remark_id: int):
remark = Remark.query.get_or_404(remark_id) remark = Remark.query.get_or_404(remark_id)
# Remark editing is disabled. Resolve the old remark and create a new one instead. # 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() scopes = RemarkScope.query.filter(RemarkScope.remark_id == remark.id).order_by(RemarkScope.id.asc()).all()

View File

@ -72,13 +72,6 @@
- Fixed an IndentationError in routes_tickets.py that prevented the backend from booting (ticket_detail route). - 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. - 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 ## v0.1.16