diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/schemas/Umbraco.Decimal.ts b/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/schemas/Umbraco.Decimal.ts index 409d27a68e..5356bd1aca 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/schemas/Umbraco.Decimal.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/schemas/Umbraco.Decimal.ts @@ -24,7 +24,7 @@ export const manifest: ManifestPropertyEditorSchema = { alias: 'step', label: 'Step size', description: 'Enter the intervals amount between each step of number to be entered', - propertyEditorUiAlias: 'Umb.PropertyEditorUi.Number', + propertyEditorUiAlias: 'Umb.PropertyEditorUi.Decimal', }, ], }, diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/uis/number/manifests.ts b/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/uis/number/manifests.ts index 529c536a6b..5a52f872ce 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/uis/number/manifests.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/uis/number/manifests.ts @@ -46,6 +46,10 @@ export const manifests: Array = [ alias: 'allowDecimals', value: true, }, + { + alias: 'step', + value: '0.01', + }, ], }, },