We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f144d74 commit 658ea4bCopy full SHA for 658ea4b
apps/builder/src/features/graph/components/ElementsSelectionMenu.tsx
@@ -157,7 +157,16 @@ export const ElementsSelectionMenu = ({
157
158
if (focusedElementIds.length === 0 || isReadOnly) return null;
159
return (
160
- <div className="flex items-stretch gap-1">
+ <div
161
+ className="flex items-stretch gap-1"
162
+ // Prevent Graph event listeners to cancel action clicks
163
+ onPointerDownCapture={(e) => {
164
+ e.stopPropagation();
165
+ }}
166
+ onPointerUpCapture={(e) => {
167
168
169
+ >
170
<span className="text-sm text-orange-10 font-medium px-2 inline-flex items-center select-none">
171
{focusedElementIds.length} selected
172
</span>
0 commit comments