From f93328db5779e458661c4a26ecad4220b6ce81e3 Mon Sep 17 00:00:00 2001 From: Cassie Tarakajian Date: Fri, 10 Apr 2020 17:01:40 -0400 Subject: [PATCH] Fixes #1353 - Multiple sketches added to collection from quick add list --- client/modules/IDE/components/QuickAddList/QuickAddList.jsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/modules/IDE/components/QuickAddList/QuickAddList.jsx b/client/modules/IDE/components/QuickAddList/QuickAddList.jsx index fe32168d..5694929d 100644 --- a/client/modules/IDE/components/QuickAddList/QuickAddList.jsx +++ b/client/modules/IDE/components/QuickAddList/QuickAddList.jsx @@ -53,7 +53,8 @@ const QuickAddList = ({ {...item} onSelect={ (event) => { - event.target.blur(); + event.stopPropagation(); + event.currentTarget.blur(); handleAction(item); } }