Skip to content

Commit

Permalink
fix: Fix build failure after PR#669 merge
Browse files Browse the repository at this point in the history
  • Loading branch information
azayati committed Sep 26, 2023
1 parent 7bcbdbc commit 82ecb46
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,9 @@ protected void createSite(SiteType type, String siteName) throws Exception {
container,
null,
true,
5);
5,
"",
0);
this.layoutService.create(new PortalConfig(portal));

NavigationContext nav = new NavigationContext(type.key(siteName), new NavigationState(1));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,9 @@ protected void createSite(SiteType type, String siteName) throws Exception {
container,
null,
true,
8);
8,
"",
0);
this.layoutService.create(new PortalConfig(portal));

NavigationContext navigation = new NavigationContext(type.key(siteName), new NavigationState(1));
Expand Down

0 comments on commit 82ecb46

Please sign in to comment.