From 63dc2d63149c0242336444f2c1d99451ead735b9 Mon Sep 17 00:00:00 2001 From: Jared Vititoe Date: Fri, 9 Jan 2026 17:04:21 -0500 Subject: [PATCH] fix: Correct function closure in ticket.js breaking tab navigation Fixed syntax error from previous commit where updateTicketStatus() function had incorrect closing. Changed `});` to `}` at line 434. This was preventing showTab() and other functions from loading, breaking the Description/Comments/Activity tab navigation. Co-Authored-By: Claude Sonnet 4.5 --- assets/js/ticket.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/js/ticket.js b/assets/js/ticket.js index b8af11b..d85c37d 100644 --- a/assets/js/ticket.js +++ b/assets/js/ticket.js @@ -431,7 +431,7 @@ function updateTicketStatus() { } performStatusChange(statusSelect, newStatus); -}); +} // Extract status change logic into reusable function function performStatusChange(statusSelect, newStatus) {