diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/schemas/Umbraco.ListView.ts b/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/schemas/Umbraco.ListView.ts index 9a879ae4fc..5194939c75 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/schemas/Umbraco.ListView.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/schemas/Umbraco.ListView.ts @@ -14,27 +14,27 @@ export const manifest: ManifestPropertyEditorSchema = { description: 'Number of items per page.', propertyEditorUiAlias: 'Umb.PropertyEditorUi.Number', }, - { - alias: 'orderDirection', - label: 'Order Direction', - propertyEditorUiAlias: 'Umb.PropertyEditorUi.OrderDirection', - }, { alias: 'includeProperties', label: 'Columns Displayed', - description: 'The properties that will be displayed for each column', + description: 'The properties that will be displayed for each column.', propertyEditorUiAlias: 'Umb.PropertyEditorUi.CollectionView.ColumnConfiguration', }, { alias: 'orderBy', label: 'Order By', - description: 'The properties that will be displayed for each column', + description: 'The default sort order for the list.', propertyEditorUiAlias: 'Umb.PropertyEditorUi.CollectionView.OrderBy', }, + { + alias: 'orderDirection', + label: 'Order Direction', + propertyEditorUiAlias: 'Umb.PropertyEditorUi.OrderDirection', + }, { alias: 'bulkActionPermissions', label: 'Bulk Action Permissions', - description: 'The properties that will be displayed for each column', + description: 'The bulk actions that are allowed from the list view.', propertyEditorUiAlias: 'Umb.PropertyEditorUi.CollectionView.BulkActionPermissions', }, ], diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/uis/collection-view/manifests.ts b/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/uis/collection-view/manifests.ts index e90ad8c857..30e8f29bab 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/uis/collection-view/manifests.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/uis/collection-view/manifests.ts @@ -19,31 +19,31 @@ const manifest: ManifestPropertyEditorUi = { { alias: 'layouts', label: 'Layouts', - description: 'The properties that will be displayed for each column', + description: 'The properties that will be displayed for each column.', propertyEditorUiAlias: 'Umb.PropertyEditorUi.CollectionView.LayoutConfiguration', }, { alias: 'icon', label: 'Content app icon', - description: 'The icon of the listview content app', + description: 'The icon of the listview content app.', propertyEditorUiAlias: 'Umb.PropertyEditorUi.IconPicker', }, { alias: 'tabName', label: 'Content app name', - description: 'The name of the listview content app (default if empty: Child Items)', + description: 'The name of the listview content app (default if empty: Child Items).', propertyEditorUiAlias: 'Umb.PropertyEditorUi.TextBox', }, { alias: 'showContentFirst', label: 'Show Content App First', - description: 'Enable this to show the content app by default instead of the list view app', + description: 'Enable this to show the content app by default instead of the list view app.', propertyEditorUiAlias: 'Umb.PropertyEditorUi.Toggle', }, { alias: 'useInfiniteEditor', label: 'Edit in Infinite Editor', - description: 'Enable this to use infinite editing to edit the content of the list view', + description: 'Enable this to use infinite editing to edit the content of the list view.', propertyEditorUiAlias: 'Umb.PropertyEditorUi.Toggle', }, ],