1
0
Fork 0
mirror of synced 2024-09-29 16:51:33 +13:00

Ensure existing invalid datasource definitions are also fixed by checking data source type before fetching table definitions

This commit is contained in:
Andrew Kingston 2022-04-13 10:27:32 +01:00
parent 6cf8f19daf
commit 543578051e

View file

@ -76,7 +76,7 @@
}
const fetchTable = async dataSource => {
if (dataSource?.tableId) {
if (dataSource?.tableId && dataSource?.type !== "query") {
try {
table = await API.fetchTableDefinition(dataSource.tableId)
} catch (error) {