Fix issue with not being able to update component names
This commit is contained in:
parent
74a8eba2fa
commit
07347420e7
|
@ -1049,8 +1049,8 @@ export const getFrontendStore = () => {
|
|||
const updatedSetting = settings.find(setting => setting.key === name)
|
||||
|
||||
if (
|
||||
updatedSetting.type === "dataSource" ||
|
||||
updatedSetting.type === "table"
|
||||
updatedSetting?.type === "dataSource" ||
|
||||
updatedSetting?.type === "table"
|
||||
) {
|
||||
const { schema } = getSchemaForDatasource(null, value)
|
||||
const columnNames = Object.keys(schema || {})
|
||||
|
|
Loading…
Reference in New Issue