From 8fec70384df48756c534a0c4f5fc2947742c4ec6 Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Sat, 25 Jan 2025 18:35:27 +0100 Subject: [PATCH] Lib: Make table non-interactive (use pointer cursor instead) --- src/lib/components/Table.svelte | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/components/Table.svelte b/src/lib/components/Table.svelte index 0b509b2..7356006 100644 --- a/src/lib/components/Table.svelte +++ b/src/lib/components/Table.svelte @@ -16,7 +16,7 @@
- +
{#each columns as col} @@ -28,7 +28,7 @@ {#each data as row} { if (handler) await handler(event, row.id); }}