Fix display column position being incorrect when using a DP as a table source

This commit is contained in:
Andrew Kingston 2024-11-15 10:49:08 +00:00
parent e5770ab9a6
commit f7fe3e33d9
No known key found for this signature in database
1 changed files with 1 additions and 0 deletions

View File

@ -5,6 +5,7 @@ export default class NestedProviderFetch extends DataFetch {
// Nested providers should already have exposed their own schema // Nested providers should already have exposed their own schema
return { return {
schema: datasource?.value?.schema, schema: datasource?.value?.schema,
primaryDisplay: datasource?.value?.primaryDisplay,
} }
} }