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