From e13ef9ec45d4e1af0ef63705740a23d8bfd78b1a Mon Sep 17 00:00:00 2001 From: Jacob Overgaard <752371+iOvergaard@users.noreply.github.com> Date: Fri, 30 Sep 2022 15:01:14 +0200 Subject: [PATCH] eslint --- .../shared/property-action-menu/property-action-menu.element.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/property-actions/shared/property-action-menu/property-action-menu.element.ts b/src/Umbraco.Web.UI.Client/src/backoffice/property-actions/shared/property-action-menu/property-action-menu.element.ts index 09e9db262b..a6992f87fa 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/property-actions/shared/property-action-menu/property-action-menu.element.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/property-actions/shared/property-action-menu/property-action-menu.element.ts @@ -6,8 +6,8 @@ import { customElement, property, state } from 'lit/decorators.js'; import { Subscription, map } from 'rxjs'; import { UmbContextProviderMixin, UmbContextConsumerMixin } from '../../../../core/context'; import { UmbExtensionRegistry } from '../../../../core/extension'; -import { UmbPropertyActionMenuContext } from './property-action-menu.context'; import type { ManifestPropertyAction } from '../../../../core/models'; +import { UmbPropertyActionMenuContext } from './property-action-menu.context'; @customElement('umb-property-action-menu') export class UmbPropertyActionMenuElement extends UmbContextProviderMixin(UmbContextConsumerMixin(LitElement)) {