fixes: Pages menu is not getting disabled when enabled and vice-versa

This commit is contained in:
arpitnath 2023-10-03 16:46:42 +05:30
parent dea8549548
commit 1c58c4acd7
2 changed files with 2 additions and 2 deletions

View file

@ -17,7 +17,7 @@ export class UpdateAppVersionEntity1691006886222 implements MigrationInterface {
new TableColumn({
name: 'show_viewer_navigation',
type: 'boolean',
default: true,
default: false,
isNullable: false,
})
);

View file

@ -136,7 +136,7 @@ export class AppsService {
);
// Set default values for app version
appVersion.showViewerNavigation = true;
appVersion.showViewerNavigation = false;
appVersion.homePageId = defaultHomePage.id;
appVersion.globalSettings = {
hideHeader: false,