From 9a17bc9cf5c3d75b8468035ce9e997cf1b49879d Mon Sep 17 00:00:00 2001 From: Jukka Lampikoski Date: Tue, 10 Mar 2026 11:21:43 +0200 Subject: [PATCH] Remove tags column from ticket list view Co-Authored-By: Claude Opus 4.6 --- index.html | 1 - script.js | 1 - 2 files changed, 2 deletions(-) diff --git a/index.html b/index.html index 61381ed..7f112ec 100644 --- a/index.html +++ b/index.html @@ -295,7 +295,6 @@ Aihe Postilaatikko Asiakas - Tagit Viestejä Päivitetty diff --git a/script.js b/script.js index e7d0f2d..8dff590 100644 --- a/script.js +++ b/script.js @@ -1106,7 +1106,6 @@ function renderTickets() { ${companyBadge}${esc(t.subject)} ${esc(t.mailbox_name || t.from_name || t.from_email)} ${t.customer_name ? esc(t.customer_name) : '-'} - ${(t.tags || []).length > 0 ? (t.tags || []).map(tag => '#' + esc(tag) + '').join(' ') : '-'} ${lastType} ${t.message_count} ${esc((t.updated || '').substring(0, 16))} `;