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 buttonsCollapsedText = null
export let darkMode = false export let darkMode = false
export let isCloud = null export let isCloud = null
export let rowConditions = null
export let aiEnabled = false export let aiEnabled = false
// Unique identifier for DOM nodes inside this instance // Unique identifier for DOM nodes inside this instance
@ -106,7 +105,6 @@
darkMode, darkMode,
isCloud, isCloud,
aiEnabled, aiEnabled,
rowConditions,
}) })
// Derive min height and make available in context // Derive min height and make available in context

View File

@ -18,9 +18,8 @@ interface ConfigStore {
} }
> >
> >
notifySuccess: any notifySuccess: (message: string) => void
notifyError: any notifyError: (message: string) => void
rowConditions: any
} }
interface PropsContext { interface PropsContext {
@ -43,7 +42,6 @@ export const createStores = (context: PropsContext): ConfigStore => {
const schemaOverrides = getProp("schemaOverrides") const schemaOverrides = getProp("schemaOverrides")
const notifySuccess = getProp("notifySuccess") const notifySuccess = getProp("notifySuccess")
const notifyError = getProp("notifyError") const notifyError = getProp("notifyError")
const rowConditions = getProp("rowConditions")
return { return {
datasource, datasource,
@ -54,7 +52,6 @@ export const createStores = (context: PropsContext): ConfigStore => {
schemaOverrides, schemaOverrides,
notifySuccess, notifySuccess,
notifyError, notifyError,
rowConditions,
} }
} }