fix(ui): populate nested fields for enableListViewSelectAPI (#13827)

Fixes an issue with the new experimental `enableListViewSelectAPI`
config option.

Group fields were not populating properly in the list view

### Before (incorrect)
```ts
{
  group.field: true
}
```

### After (correct)
```ts
{
  group: {
    field: true
  }
}
```
This commit is contained in:
Jarrod Flesch
2025-09-16 17:23:08 -04:00
committed by GitHub
parent a9553925f6
commit dc732b8f52
7 changed files with 142 additions and 54 deletions

View File

@@ -76,6 +76,7 @@ export const testEslintConfig = [
'createFolderFromDoc',
'assertURLParams',
'uploadImage',
'getRowByCellValueAndAssert',
],
},
],