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 c9d0791a0e
commit adc6008c4c
1 changed files with 1 additions and 1 deletions

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) {