fix: change the default sidebar width of the dashboard.

This commit is contained in:
a.bouhuolia
2022-11-06 16:08:39 +02:00
parent 9b9b43d065
commit 7de66f16ce
4 changed files with 76 additions and 72 deletions

View File

@@ -10,7 +10,7 @@ function DashboardSplitPane({
sidebarExpended,
children
}) {
const initialSize = 180;
const initialSize = 220;
const [defaultSize, setDefaultSize] = useState(
parseInt(localStorage.getItem('dashboard-size'), 10) || initialSize,