Fixed a bug that would prevent the workspace module from being scrolled. (#609)

This commit is contained in:
Jas Singh
2024-12-24 01:09:09 -08:00
committed by GitHub
parent af88c267f4
commit d8a59c1d18
6 changed files with 56 additions and 26 deletions

View File

@@ -26,9 +26,9 @@ export const WidgetContainer = (child: BarBoxChild): JSX.Element => {
if (child.isBox) {
return (
<box className={buttonClassName} visible={computeVisible(child)}>
{child.component}
</box>
<eventbox visible={computeVisible(child)} {...child.props}>
<box className={buttonClassName}>{child.component}</box>
</eventbox>
);
}