From d9ac1044a8d4344314db2c2ce8dfcb839acbff3f Mon Sep 17 00:00:00 2001 From: ernstmul Date: Wed, 9 Apr 2025 12:23:31 +0200 Subject: [PATCH] Fix: topic table widths --- .../messaging/topics/topic-[topic]/+page.svelte | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/routes/(console)/project-[project]/messaging/topics/topic-[topic]/+page.svelte b/src/routes/(console)/project-[project]/messaging/topics/topic-[topic]/+page.svelte index 6e78d0ea5..86044d589 100644 --- a/src/routes/(console)/project-[project]/messaging/topics/topic-[topic]/+page.svelte +++ b/src/routes/(console)/project-[project]/messaging/topics/topic-[topic]/+page.svelte @@ -34,11 +34,11 @@ let subscribersByTargetId: Record = {}; const columns = writable([ { id: '$id', title: 'Subscriber ID', type: 'string', width: 200 }, - { id: 'userName', title: 'Name', type: 'string', filter: false, width: 100 }, - { id: 'targetId', title: 'Target ID', type: 'string', width: 140 }, - { id: 'target', title: 'Target', type: 'string', filter: false, width: 140 }, - { id: 'type', title: 'Type', type: 'string', width: 80 }, - { id: '$createdAt', title: 'Created', type: 'datetime', width: 100 } + { id: 'userName', title: 'Name', type: 'string', filter: false, width: { min: 80 } }, + { id: 'targetId', title: 'Target ID', type: 'string', width: { min: 200 } }, + { id: 'target', title: 'Target', type: 'string', filter: false, width: { min: 140 } }, + { id: 'type', title: 'Type', type: 'string', width: { min: 80 } }, + { id: '$createdAt', title: 'Created', type: 'datetime', width: { min: 100 } } ]); onMount(() => {