mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-22 00:19:04 +00:00
fixes: hide and show pages
This commit is contained in:
parent
1b53f7284b
commit
57f40813bd
2 changed files with 8 additions and 0 deletions
|
|
@ -32,6 +32,11 @@ export class CreatePageTable1691004576333 implements MigrationInterface {
|
|||
type: 'boolean',
|
||||
isNullable: true,
|
||||
},
|
||||
{
|
||||
name: 'hidden',
|
||||
type: 'boolean',
|
||||
isNullable: true,
|
||||
},
|
||||
{
|
||||
name: 'app_version_id',
|
||||
type: 'uuid',
|
||||
|
|
|
|||
|
|
@ -19,6 +19,9 @@ export class Page {
|
|||
@Column()
|
||||
disabled: boolean;
|
||||
|
||||
@Column()
|
||||
hidden: boolean;
|
||||
|
||||
@Column({ name: 'app_version_id' })
|
||||
appVersionId: string;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue