come with defaults for property settings

This commit is contained in:
Niels Lyngsø
2023-12-06 08:42:40 +01:00
parent eeb8ec2554
commit 359919d55b

View File

@@ -9,7 +9,14 @@ export type UmbPropertySettingsModalValue = PropertyTypeModelBaseModel;
export const UMB_PROPERTY_SETTINGS_MODAL = new UmbModalToken<
UmbPropertySettingsModalData,
UmbPropertySettingsModalValue
>('Umb.Modal.PropertySettings', {
type: 'sidebar',
size: 'small',
});
>(
'Umb.Modal.PropertySettings',
{
type: 'sidebar',
size: 'small',
},
undefined,
{
validation: {},
},
);