fix(helpdesk): use auto table layout with max-width:0 ellipsis pattern

Fix missing closing brace in CSS. Use width:100% + max-width:0 on
description column for consistent ellipsis across all agent tables.
Narrow columns (ticket no, customer, date) use white-space:nowrap to
keep natural width. No fixed percentages — fully responsive.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-05 19:34:57 +02:00
parent 2398a73cde
commit 75c96c901a
2 changed files with 23 additions and 13 deletions

View File

@@ -82,7 +82,7 @@ if (container) {
tr.appendChild(noCell);
// Customer name as link to debitor (link uses customer_no)
const customerCell = h('td');
const customerCell = h('td', 'helpdesk-team-ticket-customer');
if (debitorBaseUrl && t.customer_no) {
const a = h('a', '', t.customer_name || t.customer_no);
a.href = debitorBaseUrl + encodeURIComponent(t.customer_no);