From 77c84967b776175b4e5b46cfeb2aeeb3db1617f7 Mon Sep 17 00:00:00 2001 From: leekelleher Date: Wed, 1 May 2024 13:50:19 +0100 Subject: [PATCH] Collection: Moves the Page Size field lower down So that the Order By is closer to the Columns Displayed field --- .../property-editors/collection/manifests.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/src/packages/property-editors/collection/manifests.ts b/src/Umbraco.Web.UI.Client/src/packages/property-editors/collection/manifests.ts index c008f1a678..942082d3d5 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/property-editors/collection/manifests.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/property-editors/collection/manifests.ts @@ -23,13 +23,6 @@ const propertyEditorUiManifest: ManifestPropertyEditorUi = { description: 'The properties that will be displayed for each column.', propertyEditorUiAlias: 'Umb.PropertyEditorUi.Collection.LayoutConfiguration', }, - { - alias: 'pageSize', - label: 'Page Size', - description: 'Number of items per page.', - propertyEditorUiAlias: 'Umb.PropertyEditorUi.Number', - config: [{ alias: 'min', value: 0 }], - }, { alias: 'orderBy', label: 'Order By', @@ -41,6 +34,13 @@ const propertyEditorUiManifest: ManifestPropertyEditorUi = { label: 'Order Direction', propertyEditorUiAlias: 'Umb.PropertyEditorUi.OrderDirection', }, + { + alias: 'pageSize', + label: 'Page Size', + description: 'Number of items per page.', + propertyEditorUiAlias: 'Umb.PropertyEditorUi.Number', + config: [{ alias: 'min', value: 0 }], + }, { alias: 'bulkActionPermissions', label: 'Bulk Action Permissions',