diff options
| author | David Hill <[email protected]> | 2026-01-16 11:55:12 +0000 |
|---|---|---|
| committer | David Hill <[email protected]> | 2026-01-16 11:55:15 +0000 |
| commit | 2c5437791b9e3d3d1efe7e1a106d57ba7002b599 (patch) | |
| tree | 633e16213aac67cad331f62ca8362c0520ed9ff6 /packages/app/src | |
| parent | 94ab87ffaddcaa1874fd382e8ca9c2ab40c32085 (diff) | |
| download | opencode-2c5437791b9e3d3d1efe7e1a106d57ba7002b599.tar.gz opencode-2c5437791b9e3d3d1efe7e1a106d57ba7002b599.zip | |
fix: updated project/sessions list width
this was originally 280px and included the 64px project avatar rail on the left, so the sessions list portion was actually 280 - 64 = 216px wide (as seen in line 1362: Math.max(layout.sidebar.width() - 64, 0)px).
i kept the logic the same in case it broke anything, i just updated the new width to account for new projects avatar panel
Diffstat (limited to 'packages/app/src')
| -rw-r--r-- | packages/app/src/context/layout.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/app/src/context/layout.tsx b/packages/app/src/context/layout.tsx index a49e891bf..a8da15609 100644 --- a/packages/app/src/context/layout.tsx +++ b/packages/app/src/context/layout.tsx @@ -72,7 +72,7 @@ export const { use: useLayout, provider: LayoutProvider } = createSimpleContext( createStore({ sidebar: { opened: false, - width: 280, + width: 344, workspaces: {} as Record<string, boolean>, workspacesDefault: false, }, |
