Improve validation around loading options for relationship field
This commit is contained in:
parent
b65673b77a
commit
b1c82626d9
|
@ -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 : []
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue