Skip to content

Commit f93328d

Browse files
committed
Fixes #1353 - Multiple sketches added to collection from quick add list
1 parent 4d7b1ed commit f93328d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

client/modules/IDE/components/QuickAddList/QuickAddList.jsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ const QuickAddList = ({
5353
{...item}
5454
onSelect={
5555
(event) => {
56-
event.target.blur();
56+
event.stopPropagation();
57+
event.currentTarget.blur();
5758
handleAction(item);
5859
}
5960
}

0 commit comments

Comments
 (0)