1
0
Fork 0
mirror of synced 2024-06-02 18:44:54 +12:00

Fix generating datsource structure for components which have a setting of type table

This commit is contained in:
Andrew Kingston 2022-09-30 15:56:06 +01:00
parent 1b9f3cf0af
commit 1b96e71237

View file

@ -243,18 +243,18 @@ export const getDatasourceForProvider = (asset, component) => {
return null
}
// There are different types of setting which can be a datasource, for
// example an actual datasource object, or a table ID string.
// Convert the datasource setting into a proper datasource object so that
// we can use it properly
if (datasourceSetting.type === "table") {
// For legacy compatibility, we need to be able to handle datasources that are
// just strings. These are not generated any more, so could be removed in
// future.
// TODO: remove at some point
const datasource = component[datasourceSetting?.key]
if (typeof datasource === "string") {
return {
tableId: component[datasourceSetting?.key],
tableId: datasource,
type: "table",
}
} else {
return component[datasourceSetting?.key]
}
return datasource
}
/**