diff --git a/frontend/src/Editor/LeftSidebar/SidebarPageSelector/index.jsx b/frontend/src/Editor/LeftSidebar/SidebarPageSelector/index.jsx index 4387b1262d..ba57454e8c 100644 --- a/frontend/src/Editor/LeftSidebar/SidebarPageSelector/index.jsx +++ b/frontend/src/Editor/LeftSidebar/SidebarPageSelector/index.jsx @@ -89,7 +89,7 @@ const LeftSidebarPageSelector = ({ } > diff --git a/server/migrations/1691004576222-UpdateAppVersionEntity.ts b/server/migrations/1691004576222-UpdateAppVersionEntity.ts index c1e7fac828..0ef8eb2d6f 100644 --- a/server/migrations/1691004576222-UpdateAppVersionEntity.ts +++ b/server/migrations/1691004576222-UpdateAppVersionEntity.ts @@ -17,7 +17,7 @@ export class UpdateAppVersionEntity1691006886222 implements MigrationInterface { new TableColumn({ name: 'show_viewer_navigation', type: 'boolean', - default: false, + default: true, isNullable: false, }) ); diff --git a/server/src/services/apps.service.ts b/server/src/services/apps.service.ts index 76fd93c053..9b0efd23a8 100644 --- a/server/src/services/apps.service.ts +++ b/server/src/services/apps.service.ts @@ -136,7 +136,7 @@ export class AppsService { ); // Set default values for app version - appVersion.showViewerNavigation = false; + appVersion.showViewerNavigation = true; appVersion.homePageId = defaultHomePage.id; appVersion.globalSettings = { hideHeader: false,