Skip to content

Commit dabaa61

Browse files
committed
fix(Form): fixed pf-form-field-group default expandable state
1 parent a089c7b commit dabaa61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/src/components/Form/FormFieldGroup.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ const props = defineProps<Props>();
5353
const ouiaProps = useOUIAProps({id: props.ouiaId, safe: props.ouiaSafe});
5454
5555
/** Flag indicate if the form field group is expanded. Modifies the card to be expandable. */
56-
const expanded = defineModel<boolean>('expanded');
56+
const expanded = defineModel<boolean | undefined>('expanded', { default: undefined });
5757
5858
defineSlots<{
5959
default?: (props?: Record<never, never>) => any;

0 commit comments

Comments
 (0)