mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 17:08:34 +00:00
default page menu settings should be true
This commit is contained in:
parent
175ea1b4a5
commit
447686eabf
3 changed files with 3 additions and 3 deletions
|
|
@ -89,7 +89,7 @@ const LeftSidebarPageSelector = ({
|
|||
<GlobalSettings
|
||||
darkMode={darkMode}
|
||||
showHideViewerNavigationControls={showHideViewerNavigationControls}
|
||||
showPageViwerPageNavitation={appDefinition?.showViewerNavigation || false}
|
||||
showPageViwerPageNavitation={!appDefinition?.showViewerNavigation || false}
|
||||
/>
|
||||
}
|
||||
>
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ export class UpdateAppVersionEntity1691006886222 implements MigrationInterface {
|
|||
new TableColumn({
|
||||
name: 'show_viewer_navigation',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
default: true,
|
||||
isNullable: false,
|
||||
})
|
||||
);
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue