mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 17:08:34 +00:00
fixes: Pages menu is not getting disabled when enabled and vice-versa
This commit is contained in:
parent
dea8549548
commit
1c58c4acd7
2 changed files with 2 additions and 2 deletions
|
|
@ -17,7 +17,7 @@ export class UpdateAppVersionEntity1691006886222 implements MigrationInterface {
|
|||
new TableColumn({
|
||||
name: 'show_viewer_navigation',
|
||||
type: 'boolean',
|
||||
default: true,
|
||||
default: false,
|
||||
isNullable: false,
|
||||
})
|
||||
);
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue