From e80cc1592fb244dd7692486a4c1ca5b1c2008112 Mon Sep 17 00:00:00 2001 From: Kheuval <55691260+Kheuval@users.noreply.github.com> Date: Mon, 17 Mar 2025 11:38:37 +0100 Subject: [PATCH] fix(Table): allow links to be opened when @select is used (#3580) --- src/runtime/components/Table.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/components/Table.vue b/src/runtime/components/Table.vue index 7138f742..6328fb72 100644 --- a/src/runtime/components/Table.vue +++ b/src/runtime/components/Table.vue @@ -289,7 +289,7 @@ function handleRowSelect(row: TableRow, e: Event) { return } const target = e.target as HTMLElement - const isInteractive = target.closest('button') + const isInteractive = target.closest('button') || target.closest('a') if (isInteractive) { return }