Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Collection view's instruction text to match current Backoffice terminology #2452

Merged
merged 1 commit into from
Oct 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions src/packages/property-editors/collection/manifests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const propertyEditorUiManifest: ManifestPropertyEditorUi = {
{
alias: 'orderBy',
label: 'Order By',
description: 'The default sort order for the list.',
description: 'The default sort order for the Collection.',
propertyEditorUiAlias: 'Umb.PropertyEditorUi.Collection.OrderBy',
},
{
Expand All @@ -44,25 +44,25 @@ const propertyEditorUiManifest: ManifestPropertyEditorUi = {
{
alias: 'bulkActionPermissions',
label: 'Bulk Action Permissions',
description: 'The bulk actions that are allowed from the list view.',
description: 'The bulk actions that are allowed on items in the Collection view.',
propertyEditorUiAlias: 'Umb.PropertyEditorUi.Collection.BulkActionPermissions',
},
{
alias: 'icon',
label: 'Content app icon',
description: 'The icon of the listview content app.',
label: 'Workspace View icon',
description: 'The icon for the Collection\'s Workspace View.',
propertyEditorUiAlias: 'Umb.PropertyEditorUi.IconPicker',
},
{
alias: 'tabName',
label: 'Content app name',
description: 'The name of the listview content app (default if empty: Child Items).',
label: 'Workspace View name',
description: 'The name of the Collection\'s Workspace View (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.',
label: 'Show Content Workspace View First',
description: 'Enable this to show the Content Workspace View by default instead of the Collection\'s.',
propertyEditorUiAlias: 'Umb.PropertyEditorUi.Toggle',
},
],
Expand Down
Loading