Remove rowConditions
This commit is contained in:
parent
421cefaa9b
commit
68f29560bd
|
@ -47,7 +47,6 @@
|
|||
export let buttonsCollapsedText = null
|
||||
export let darkMode = false
|
||||
export let isCloud = null
|
||||
export let rowConditions = null
|
||||
export let aiEnabled = false
|
||||
|
||||
// Unique identifier for DOM nodes inside this instance
|
||||
|
@ -106,7 +105,6 @@
|
|||
darkMode,
|
||||
isCloud,
|
||||
aiEnabled,
|
||||
rowConditions,
|
||||
})
|
||||
|
||||
// Derive min height and make available in context
|
||||
|
|
|
@ -18,9 +18,8 @@ interface ConfigStore {
|
|||
}
|
||||
>
|
||||
>
|
||||
notifySuccess: any
|
||||
notifyError: any
|
||||
rowConditions: any
|
||||
notifySuccess: (message: string) => void
|
||||
notifyError: (message: string) => void
|
||||
}
|
||||
|
||||
interface PropsContext {
|
||||
|
@ -43,7 +42,6 @@ export const createStores = (context: PropsContext): ConfigStore => {
|
|||
const schemaOverrides = getProp("schemaOverrides")
|
||||
const notifySuccess = getProp("notifySuccess")
|
||||
const notifyError = getProp("notifyError")
|
||||
const rowConditions = getProp("rowConditions")
|
||||
|
||||
return {
|
||||
datasource,
|
||||
|
@ -54,7 +52,6 @@ export const createStores = (context: PropsContext): ConfigStore => {
|
|||
schemaOverrides,
|
||||
notifySuccess,
|
||||
notifyError,
|
||||
rowConditions,
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue