Client: Header: Fix when clicking on context button breaks InsideGroup info panel

This commit is contained in:
Aleksandr Lushkin 2024-07-30 17:39:03 +02:00
parent b38ac0d9e6
commit 8a13032fc9

View File

@ -259,6 +259,8 @@ const SectionHeaderContent = (props) => {
}; };
const onContextOptionsClick = () => { const onContextOptionsClick = () => {
if (isInsideGroup) return;
setBufferSelection(selectedFolder); setBufferSelection(selectedFolder);
}; };