Skip to content

Commit

Permalink
Merge pull request #11 from MetaCell/feature/ESCKAN-38
Browse files Browse the repository at this point in the history
ESCKAN-38: fixing naming convention required by geppetto
  • Loading branch information
ddelpiano authored Mar 21, 2024
2 parents 9be6cb0 + 3ed0fc8 commit 82d1a38
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions src/layout-manager/layout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,24 +13,24 @@ export default {
children: [
{
type: "row",
weight: 50,
weight: 62,
children: [
{
type: "tabset",
id: "leftPanel",
weight: 50,
weight: 100,
enableDeleteWhenEmpty: false,
children: []
}
]
},
{
type: "row",
weight: 50,
weight: 38,
children: [
{
type: "tabset",
weight: 50,
weight: 100,
id: "rightPanel",
enableDeleteWhenEmpty: false,
children: []
Expand All @@ -39,4 +39,4 @@ export default {
}
]
}
};
};
6 changes: 3 additions & 3 deletions src/layout-manager/store.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import { createStore } from '@metacell/geppetto-meta-client/common';
import componentMap from "./componentMap.ts";
import layout from "./layout.ts";
import baseLayout from "./layout.ts";


const store = createStore(
{},
{},
[],
{ layout, componentMap }
{ undefined, baseLayout, componentMap }
)

export default store;
export default store;

0 comments on commit 82d1a38

Please sign in to comment.