From 0e480a57116e42901fc19a755f9d06fd93ed4be6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Lyngs=C3=B8?= Date: Tue, 20 Dec 2022 16:26:27 +0100 Subject: [PATCH] imports --- .../src/backoffice/sections/shared/section.element.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/sections/shared/section.element.ts b/src/Umbraco.Web.UI.Client/src/backoffice/sections/shared/section.element.ts index 840ade70cc..f223da54b9 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/sections/shared/section.element.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/sections/shared/section.element.ts @@ -2,6 +2,7 @@ import { UUITextStyles } from '@umbraco-ui/uui-css/lib'; import { css, html, LitElement, nothing } from 'lit'; import { customElement, state } from 'lit/decorators.js'; import { map, switchMap, EMPTY, of } from 'rxjs'; +import { IRoutingInfo } from 'router-slot'; import { UmbSectionContext } from './section.context'; import { UmbObserverMixin } from '@umbraco-cms/observable-api'; import { createExtensionElement } from '@umbraco-cms/extensions-api'; @@ -11,7 +12,6 @@ import type { ManifestTree, ManifestSectionView, ManifestWorkspace } from '@umbr import './section-trees/section-trees.element.ts'; import '../shared/section-views/section-views.element.ts'; import { umbExtensionsRegistry } from '@umbraco-cms/extensions-registry'; -import { IRoutingInfo } from 'router-slot'; @customElement('umb-section')