Skip to content

Commit

Permalink
Give 'group' precedence over 'label' for the fullTab control
Browse files Browse the repository at this point in the history
  • Loading branch information
asheshv committed Sep 17, 2024
1 parent df82fce commit 84e55b3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export const createFieldControls = ({

const { visible } = schemaState.options(accessPath.concat(field.id));
currentGroup = createGroup(
field.id, field.label || field.group, visible, field, true
field.id, field.group || field.label, visible, field, true
);
} else {
const { group } = field;
Expand Down

0 comments on commit 84e55b3

Please sign in to comment.