Fix types
This commit is contained in:
parent
01548da3c9
commit
6034d8ec42
|
@ -190,6 +190,7 @@ export const initialise = (context: StoreContext) => {
|
|||
related: fieldSchema.related,
|
||||
calculationType: fieldSchema.calculationType,
|
||||
__left: undefined as any, // TODO
|
||||
__idx: undefined as any, // TODO
|
||||
}
|
||||
// Override a few properties for primary display
|
||||
if (field === primaryDisplay) {
|
||||
|
|
|
@ -16,7 +16,7 @@ export type UIColumn = FieldSchema & {
|
|||
autocolumn: boolean
|
||||
}
|
||||
calculationType: CalculationType
|
||||
__idx?: number
|
||||
__idx: number
|
||||
__left: number
|
||||
width: number
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue