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 response = await API.buildDatasourceSchema({
|
||||
datasourceId: datasource?._id,
|
||||
tablesFilter,
|
||||
})
|
||||
const response = await API.buildDatasourceSchema(
|
||||
datasource?._id,
|
||||
tablesFilter
|
||||
)
|
||||
updateDatasource(response)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue