fix: prevent event propagation on checkbox click in transaction table for improved user interaction
This commit is contained in:
@@ -510,7 +510,7 @@ export function TransactionTable({
|
|||||||
isDuplicate && "shadow-sm"
|
isDuplicate && "shadow-sm"
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
<div className="p-3">
|
<div className="p-3" onClick={(e) => e.stopPropagation()}>
|
||||||
<Checkbox
|
<Checkbox
|
||||||
checked={selectedTransactions.has(transaction.id)}
|
checked={selectedTransactions.has(transaction.id)}
|
||||||
onCheckedChange={() =>
|
onCheckedChange={() =>
|
||||||
|
|||||||
Reference in New Issue
Block a user