From dd1125e2ab450bbd5eb8b697f3bb060488c21701 Mon Sep 17 00:00:00 2001 From: Jukka Lampikoski Date: Wed, 11 Mar 2026 08:42:24 +0200 Subject: [PATCH] Osoitettu -> Agentti tikettilistan sarakkeessa MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Vaihdettu sarakkeen nimi 'Osoitettu' -> 'Agentti' ja detail-näkymän dropdown 'Ei osoitettu' -> 'Ei agenttia'. Co-Authored-By: Claude Opus 4.6 --- index.html | 2 +- script.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index ce79072..6262794 100644 --- a/index.html +++ b/index.html @@ -414,7 +414,7 @@ Postilaatikko Viestejä Päivitetty - Osoitettu + Agentti diff --git a/script.js b/script.js index 71f231e..8fc6ea3 100644 --- a/script.js +++ b/script.js @@ -1331,7 +1331,7 @@ function renderTickets() { ${esc(t.mailbox_name || t.from_name || t.from_email)} ${lastType} ${t.message_count} ${timeAgo(t.updated)} - ${t.assigned_to ? esc(t.assigned_to) : '-'} + ${t.assigned_to ? esc(t.assigned_to) : ''} `; }).join(''); // Re-attach checkbox listeners @@ -1412,7 +1412,7 @@ async function showTicketDetail(id, companyId = '') {