Fixing an issue with datasource fetch schema not passing the correct parameters to frontend-core function.
This commit is contained in:
parent
1b6f113f11
commit
4cdc0304c6
|
@ -93,10 +93,10 @@ export function createDatasourcesStore() {
|
||||||
}
|
}
|
||||||
|
|
||||||
const updateSchema = async (datasource, tablesFilter) => {
|
const updateSchema = async (datasource, tablesFilter) => {
|
||||||
const response = await API.buildDatasourceSchema({
|
const response = await API.buildDatasourceSchema(
|
||||||
datasourceId: datasource?._id,
|
datasource?._id,
|
||||||
tablesFilter,
|
tablesFilter
|
||||||
})
|
)
|
||||||
updateDatasource(response)
|
updateDatasource(response)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue