mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-13 03:13:47 +00:00
d7392b93d2
* refactor: process custom fields on cache generate * refactor: remove userFields
22 lines
411 B
TypeScript
22 lines
411 B
TypeScript
import { OntimeEntryCommonKeys, OntimeEvent } from 'ontime-types';
|
|
|
|
/**
|
|
* @description set default column order
|
|
*/
|
|
export const defaultColumnOrder: OntimeEntryCommonKeys[] = [
|
|
'isPublic',
|
|
'cue',
|
|
'timeStart',
|
|
'timeEnd',
|
|
'duration',
|
|
'title',
|
|
'subtitle',
|
|
'presenter',
|
|
'note',
|
|
];
|
|
|
|
/**
|
|
* @description set default hidden columns
|
|
*/
|
|
export const defaultHiddenColumns: (keyof OntimeEvent)[] = [];
|