From 9891138755eda323b56db99f268eeea81d4a5d17 Mon Sep 17 00:00:00 2001 From: Rick Butterfield Date: Mon, 29 Apr 2024 09:57:44 +0100 Subject: [PATCH] Update v14 property editor docs Added `export default...` as it was missing from the example --- 14/umbraco-cms/tutorials/creating-a-property-editor/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/14/umbraco-cms/tutorials/creating-a-property-editor/README.md b/14/umbraco-cms/tutorials/creating-a-property-editor/README.md index 901a5ab1957..e43da30d0d0 100644 --- a/14/umbraco-cms/tutorials/creating-a-property-editor/README.md +++ b/14/umbraco-cms/tutorials/creating-a-property-editor/README.md @@ -403,6 +403,8 @@ export class MySuggestionsPropertyEditorUIElement ]; } +export default MySuggestionsPropertyEditorUIElement; + declare global { interface HTMLElementTagNameMap { 'my-suggestions-property-editor-ui': MySuggestionsPropertyEditorUIElement;