From f4bc2828e8a9d4b5b65f1b329ece1d83170e343d Mon Sep 17 00:00:00 2001 From: Christian Date: Thu, 11 Jun 2026 09:34:02 +0200 Subject: [PATCH] Fix case status save on v3 detail by binding inline onchange fallback --- app/modules/sag/templates/detail_v3.html | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/app/modules/sag/templates/detail_v3.html b/app/modules/sag/templates/detail_v3.html index e36a328..45fca73 100644 --- a/app/modules/sag/templates/detail_v3.html +++ b/app/modules/sag/templates/detail_v3.html @@ -3461,7 +3461,7 @@
- {% for st in status_options %} {% endfor %} @@ -3708,11 +3708,6 @@ }); }; - bindChange('topbarStatusSelect', async (el) => { - await patchCase({ status: el.value || 'åben' }); - location.reload(); - }); - bindChange('topbarTypeSelect', async (el) => { await patchCase({ type: String(el.value || 'ticket').toLowerCase() }); location.reload();