Revert dynamic gridstack column count depending on sidebars

This commit is contained in:
Manuel
2023-01-14 22:51:39 +01:00
parent ad2c763133
commit e05278c618
2 changed files with 11 additions and 8 deletions

View File

@@ -16,7 +16,15 @@ export const DashboardSidebar = ({ location, isGridstackReady }: DashboardSideba
} = useCardStyles(false);
return (
<Card p={0} m={0} radius="lg" className={cardClass} w={300}>
<Card
p={0}
m={0}
radius="lg"
className={cardClass}
style={{ borderStyle: 'dashed' }}
w={300}
withBorder
>
{isGridstackReady && <SidebarInner location={location} />}
</Card>
);