diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/shared/property-editors/models/manifests.ts b/src/Umbraco.Web.UI.Client/src/backoffice/shared/property-editors/models/manifests.ts index 14b72b1bed..537baee8e8 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/shared/property-editors/models/manifests.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/shared/property-editors/models/manifests.ts @@ -16,6 +16,7 @@ import { manifest as tags } from './Umbraco.Tags'; import { manifest as markdownEditor } from './Umbraco.MarkdownEditor'; import { manifest as radioButtonList } from './Umbraco.RadioButtonList'; import { manifest as blockList } from './Umbraco.BlockList'; +import { manifest as checkboxList } from './Umbraco.CheckboxList'; import type { ManifestPropertyEditorModel } from '@umbraco-cms/models'; @@ -37,6 +38,7 @@ export const manifests: Array = [ tags, markdownEditor, radioButtonList, + checkboxList, blockList, { type: 'propertyEditorModel', @@ -86,12 +88,6 @@ export const manifests: Array = [ alias: 'Umbraco.BlockGrid', meta: {}, }, - { - type: 'propertyEditorModel', - name: 'Checkbox list', - alias: 'Umbraco.CheckBoxList', - meta: {}, - }, { type: 'propertyEditorModel', name: 'List view',