diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/backoffice.element.ts b/src/Umbraco.Web.UI.Client/src/backoffice/backoffice.element.ts index 95fb9fefbb..c77cd7f0c5 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/backoffice.element.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/backoffice.element.ts @@ -3,7 +3,7 @@ import { UUITextStyles } from '@umbraco-ui/uui-css/lib'; import { css, html, LitElement } from 'lit'; import { UmbContextProviderMixin } from '../core/context'; -import { UmbNotificationService } from '../core/service/notifications.store'; +import { UmbNotificationService } from '../core/services/notification.service'; import { UmbDataTypeStore } from '../core/stores/data-type.store'; import { UmbNodeStore } from '../core/stores/node.store'; diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/components/backoffice-notification-container.element.ts b/src/Umbraco.Web.UI.Client/src/backoffice/components/backoffice-notification-container.element.ts index d89381ea92..cfc013fa7d 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/components/backoffice-notification-container.element.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/components/backoffice-notification-container.element.ts @@ -4,7 +4,7 @@ import { customElement, state } from 'lit/decorators.js'; import { repeat } from 'lit/directives/repeat.js'; import { Subscription } from 'rxjs'; import { UmbContextConsumerMixin } from '../../core/context'; -import { UmbNotificationService } from '../../core/service/notifications.store'; +import { UmbNotificationService } from '../../core/services/notification.service'; @customElement('umb-backoffice-notification-container') export class UmbBackofficeNotificationContainer extends UmbContextConsumerMixin(LitElement) { diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/components/node-editor.element.ts b/src/Umbraco.Web.UI.Client/src/backoffice/components/node-editor.element.ts index b37279fb07..51e8a6c697 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/components/node-editor.element.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/components/node-editor.element.ts @@ -5,7 +5,7 @@ import { UmbContextConsumerMixin } from '../../core/context'; import { UmbNodeStore } from '../../core/stores/node.store'; import { map, Subscription } from 'rxjs'; import { DocumentNode } from '../../mocks/data/content.data'; -import { UmbNotificationService } from '../../core/service/notifications.store'; +import { UmbNotificationService } from '../../core/services/notification.service'; import { UmbExtensionManifest, UmbExtensionManifestEditorView, UmbExtensionRegistry } from '../../core/extension'; import { IRoutingInfo, RouterSlot } from 'router-slot'; diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/property-editors/property-editor-context-example.element.ts b/src/Umbraco.Web.UI.Client/src/backoffice/property-editors/property-editor-context-example.element.ts index 60346438be..3a04746abc 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/property-editors/property-editor-context-example.element.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/property-editors/property-editor-context-example.element.ts @@ -1,7 +1,7 @@ import { html, LitElement } from 'lit'; import { customElement } from 'lit/decorators.js'; import { UmbContextConsumerMixin } from '../../core/context'; -import { UmbNotificationService } from '../../core/service/notifications.store'; +import { UmbNotificationService } from '../../core/services/notification.service'; @customElement('umb-property-editor-context-example') export default class UmbPropertyEditorContextExample extends UmbContextConsumerMixin(LitElement) { diff --git a/src/Umbraco.Web.UI.Client/src/core/service/notifications.store.ts b/src/Umbraco.Web.UI.Client/src/core/services/notification.service.ts similarity index 100% rename from src/Umbraco.Web.UI.Client/src/core/service/notifications.store.ts rename to src/Umbraco.Web.UI.Client/src/core/services/notification.service.ts