1
0
Fork 0
mirror of synced 2024-06-27 18:40:42 +12:00

Improve validation around loading options for relationship field

This commit is contained in:
Andrew Kingston 2021-02-01 13:23:18 +00:00
parent b65673b77a
commit b1c82626d9

View file

@ -25,13 +25,17 @@
const fetchTable = async id => {
if (id != null) {
tableDefinition = await API.fetchTableDefinition(id)
const result = await API.fetchTableDefinition(id)
if (!result.error) {
tableDefinition = result
}
}
}
const fetchRows = async id => {
if (id != null) {
options = await API.fetchTableData(id)
const rows = await API.fetchTableData(id)
options = rows && !rows.error ? rows : []
}
}