I have a `create` with a fields structure like:
inputFields: [
{
key: 'parent1',
children: [
{
key: 'child1',
label: 'Child1',
type: 'string',
},
{
key: 'child2',
label: 'Child2',
type: 'string',
},
],
},
{
key: 'parent2',
children: [
{
key: 'child1',
label: 'Child1',
type: 'string',
},
{
key: 'child2',
label: 'Child2',
type: 'string',
},
],
},
]
And in this case only the `parent2` group will be displayed in UI of the action.
Isn’t it a bug in UI as parent keys are different?