From 6fc5aa0090d3972a0cb9cd41887a6e5538c1154c Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sun, 28 Sep 2025 10:42:15 +0300 Subject: [PATCH] fix(bulk_actions): deleting a bulk action would execute all bulk actions --- apps/client/src/widgets/react/HelpRemoveButtons.tsx | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/apps/client/src/widgets/react/HelpRemoveButtons.tsx b/apps/client/src/widgets/react/HelpRemoveButtons.tsx index 7eda18b97..79c0a138f 100644 --- a/apps/client/src/widgets/react/HelpRemoveButtons.tsx +++ b/apps/client/src/widgets/react/HelpRemoveButtons.tsx @@ -14,17 +14,20 @@ export default function HelpRemoveButtons({ help, removeText, onRemove }: HelpRe {help && <> {help} {" "} - } + } { + e.preventDefault(); + onRemove?.(); + }} /> ); -} \ No newline at end of file +}