Minor code tidy-up

This commit is contained in:
leekelleher
2024-04-10 18:58:36 +01:00
parent eb6ce84969
commit ed4956a405
3 changed files with 2 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
import { html, customElement, css, property, when, nothing, state } from '@umbraco-cms/backoffice/external/lit';
import { html, customElement, css, property, when, nothing } from '@umbraco-cms/backoffice/external/lit';
import { UmbElementMixin } from '@umbraco-cms/backoffice/element-api';
import { UUIRefElement, UUIRefEvent, UUIRefNodeElement } from '@umbraco-cms/backoffice/external/uui';

View File

@@ -22,7 +22,6 @@ export class UmbConfirmModalController extends UmbControllerBase {
// This is a one time off, so we can destroy our selfs.
this.destroy();
// Map back into UmbVariantId instances:
return;
}
}

View File

@@ -56,7 +56,7 @@ export class UmbPropertyEditorUITagsElement extends UmbLitElement implements Umb
render() {
return html`<umb-tags-input
group="${ifDefined(this._group)}"
group=${ifDefined(this._group)}
.culture=${this._culture}
.items=${this.value}
@change=${this.#onChange}></umb-tags-input>`;