mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-15 06:08:27 +00:00
fix(app): timeline width jumps around when review panel is open/closed (#36202)
This commit is contained in:
parent
c769380776
commit
772e976d80
1 changed files with 1 additions and 1 deletions
|
|
@ -483,7 +483,7 @@ export default function Page() {
|
|||
if (desktopSessionResizeOpen()) return `${sessionPanelResizedWidth()}px`
|
||||
return `calc(100% - ${layout.fileTree.width()}px)`
|
||||
})
|
||||
const centered = createMemo(() => isDesktop() && !desktopReviewOpen())
|
||||
const centered = createMemo(() => isDesktop() && (newSessionDesign() || !desktopReviewOpen()))
|
||||
const desktopV2PanelLayout = createMemo(() =>
|
||||
sessionPanelLayout({
|
||||
review: desktopV2ReviewOpen(),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue