Update block-editor-custom-view.model.ts

Fix a spelling mistake so custom views can be added with a correct manifest
This commit is contained in:
Rick Butterfield
2024-05-23 10:27:52 +01:00
committed by GitHub
parent 07c2ec7f22
commit 1685733ebd

View File

@@ -2,5 +2,5 @@ import type { UmbPropertyEditorUiElement } from '../interfaces/index.js';
import type { ManifestElement } from '@umbraco-cms/backoffice/extension-api';
export interface ManifestBlockEditorCustomView extends ManifestElement<UmbPropertyEditorUiElement> {
type: 'bockEditorCustomView';
type: 'blockEditorCustomView';
}