1
0
Fork 0
mirror of synced 2024-07-02 04:50:44 +12:00

Fix data fetch for nested providers, JSON arrays or array fields not working

This commit is contained in:
Andrew Kingston 2022-01-18 15:34:10 +00:00
parent c377cb42a5
commit 302a1b3c5f

View file

@ -110,12 +110,6 @@ export default class DataFetch {
*/
async getInitialData() {
const { datasource, filter, sortColumn, paginate } = this.options
const tableId = datasource?.tableId
// Ensure table ID exists
if (!tableId) {
return
}
// Fetch datasource definition and determine feature flags
const definition = await this.constructor.getDefinition(datasource)