From 75560c2b66e1c628a94613ac09d34efdcff6d3c8 Mon Sep 17 00:00:00 2001 From: Jukka Lampikoski Date: Wed, 11 Mar 2026 08:38:15 +0200 Subject: [PATCH] =?UTF-8?q?Tikettilista:=20Asiakas-sarake=20Tilan=20j?= =?UTF-8?q?=C3=A4lkeen=20+=20Osoitettu-sarake?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Siirretty Asiakas-sarake heti Tila-sarakkeen jälkeen ja lisätty uusi Osoitettu (assigned_to) -sarake viimeiseksi sarakkeeksi. Co-Authored-By: Claude Opus 4.6 --- index.html | 3 ++- script.js | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 0a98f1f..ce79072 100644 --- a/index.html +++ b/index.html @@ -408,12 +408,13 @@ Tila + Asiakas Tyyppi Aihe Postilaatikko - Asiakas Viestejä Päivitetty + Osoitettu diff --git a/script.js b/script.js index a8a3652..71f231e 100644 --- a/script.js +++ b/script.js @@ -1325,12 +1325,13 @@ function renderTickets() { return ` ${ticketStatusLabels[t.status] || t.status} + ${t.customer_name ? esc(t.customer_name) : '-'} ${typeLabel} ${prioBadge}${companyBadge}${t.ticket_number ? `#${t.ticket_number}` : ''}${esc(t.subject)} ${esc(t.mailbox_name || t.from_name || t.from_email)} - ${t.customer_name ? esc(t.customer_name) : '-'} ${lastType} ${t.message_count} ${timeAgo(t.updated)} + ${t.assigned_to ? esc(t.assigned_to) : '-'} `; }).join(''); // Re-attach checkbox listeners