fix(Table): allow links to be opened when @select is used (#3580)

This commit is contained in:
Kheuval
2025-03-17 11:38:37 +01:00
committed by GitHub
parent 5d52af6292
commit e80cc1592f

View File

@@ -289,7 +289,7 @@ function handleRowSelect(row: TableRow<T>, 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
}