mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-02 22:40:22 +00:00
fix(app): regressions
This commit is contained in:
parent
3929f0b5bd
commit
70c794e913
13 changed files with 101 additions and 73 deletions
|
|
@ -1938,7 +1938,7 @@ export default function Layout(props: ParentProps) {
|
|||
direction="horizontal"
|
||||
size={layout.sidebar.width()}
|
||||
min={244}
|
||||
max={window.innerWidth * 0.3 + 64}
|
||||
max={typeof window === "undefined" ? 1000 : window.innerWidth * 0.3 + 64}
|
||||
collapseThreshold={244}
|
||||
onResize={layout.sidebar.resize}
|
||||
onCollapse={layout.sidebar.close}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue