Skip to content

Commit

Permalink
wip: Set method on Layout needs to be reimplemented #970
Browse files Browse the repository at this point in the history
  • Loading branch information
cnouguier committed Oct 8, 2024
1 parent 4f67bf2 commit 4301270
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/client/layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export const Layout = {
if (layout.fab) this.setFab(layout.fab)
this.placements.forEach(placement => {
if (_.has(layout, `panes.${placement}`)) this.setPane(placement, _.get(layout, `panes.${placement}`))
if (_.has(layout, `windows.${placement}`)) this.setWindows(placement, _.get(layout, `windows.${placement}`))
if (_.has(layout, `windows.${placement}`)) this.setWindow(placement, _.get(layout, `windows.${placement}`))
})
if (layout.mode) this.setMode(layout.mode)
if (layout.focus) this.setFocus(layout.focus)
Expand Down

0 comments on commit 4301270

Please sign in to comment.