1
0
Fork 0
mirror of synced 2024-08-15 10:01:34 +12:00

fetch the table which contains info about the primaryDisplay

This commit is contained in:
Maurits Lourens 2022-03-18 14:35:06 +01:00
parent b0f33de743
commit 8cd921f834

View file

@ -17,6 +17,7 @@
let table
$: fetchSchema(dataSource)
$: fetchTable(dataSource)
// Returns the closes data context which isn't a built in context
const getInitialValues = (type, dataSource, context) => {
@ -74,6 +75,16 @@
}
}
const fetchTable = async dataSource => {
if (dataSource?.tableId) {
try {
table = await API.fetchTableDefinition(dataSource.tableId)
} catch (error) {
table = null
}
}
}
$: initialValues = getInitialValues(actionType, dataSource, $context)
$: resetKey = Helpers.hashString(
JSON.stringify(initialValues) + JSON.stringify(schema)