Remove rowConditions

This commit is contained in:
Adria Navarro 2024-12-30 09:50:40 +01:00
parent 421cefaa9b
commit 68f29560bd
2 changed files with 2 additions and 7 deletions

View File

@ -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

View File

@ -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,
}
}