mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-13 03:13:47 +00:00
8df419d835
* refactor: deprecate presenter and subtitle * style: reduce spacing between related sections * refactor: optional secondary field * refactor: remove secondary field * refactor: dynamic data source
20 lines
382 B
TypeScript
20 lines
382 B
TypeScript
import { OntimeEntryCommonKeys, OntimeEvent } from 'ontime-types';
|
|
|
|
/**
|
|
* @description set default column order
|
|
*/
|
|
export const defaultColumnOrder: OntimeEntryCommonKeys[] = [
|
|
'isPublic',
|
|
'cue',
|
|
'timeStart',
|
|
'timeEnd',
|
|
'duration',
|
|
'title',
|
|
'note',
|
|
];
|
|
|
|
/**
|
|
* @description set default hidden columns
|
|
*/
|
|
export const defaultHiddenColumns: (keyof OntimeEvent)[] = [];
|