From cc4d7b0955558fe6be0ea0acbdbdcd4b9d006515 Mon Sep 17 00:00:00 2001 From: ramki-bruno Date: Thu, 6 Feb 2025 23:22:58 +0530 Subject: [PATCH] Fix: Unresponsive click-area in folder-collection-item between chevron-icon and name --- .../Sidebar/Collections/Collection/CollectionItem/index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/bruno-app/src/components/Sidebar/Collections/Collection/CollectionItem/index.js b/packages/bruno-app/src/components/Sidebar/Collections/Collection/CollectionItem/index.js index 3da23bcf5..3e426eb7f 100644 --- a/packages/bruno-app/src/components/Sidebar/Collections/Collection/CollectionItem/index.js +++ b/packages/bruno-app/src/components/Sidebar/Collections/Collection/CollectionItem/index.js @@ -282,6 +282,9 @@ const CollectionItem = ({ item, collection, searchText }) => { style={{ paddingLeft: 8 }} + onClick={handleClick} + onContextMenu={handleRightClick} + onDoubleClick={handleDoubleClick} >
{isFolder ? ( @@ -297,9 +300,6 @@ const CollectionItem = ({ item, collection, searchText }) => {