mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-20 06:29:07 +00:00
33 lines
941 B
TypeScript
33 lines
941 B
TypeScript
import { OptionTitle } from '../../common/components/view-params-editor/constants';
|
|
import { ViewOption } from '../../common/components/view-params-editor/types';
|
|
|
|
export const projectInfoOptions: ViewOption[] = [
|
|
{
|
|
title: OptionTitle.BehaviourOptions,
|
|
collapsible: true,
|
|
options: [
|
|
{
|
|
id: 'showBackstage',
|
|
title: 'Show backstage Data',
|
|
description: 'Whether to show fields related to the backstage views',
|
|
type: 'boolean',
|
|
defaultValue: false,
|
|
},
|
|
{
|
|
id: 'showPublic',
|
|
title: 'Show Public Data',
|
|
description: 'Whether to show fields related to the public views',
|
|
type: 'boolean',
|
|
defaultValue: false,
|
|
},
|
|
{
|
|
id: 'showCustom',
|
|
title: 'Show Custom Data',
|
|
description: 'Whether to show fields related to the custom data',
|
|
type: 'boolean',
|
|
defaultValue: false,
|
|
},
|
|
],
|
|
},
|
|
];
|