From 29ce204f305f33dcedf6ab87ae37da8eb981a00b Mon Sep 17 00:00:00 2001 From: Sebastian Date: Mon, 25 Oct 2021 16:31:01 +0200 Subject: [PATCH] Fix build and circular dependency. --- frontend/app/framework/angular/title.component.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/frontend/app/framework/angular/title.component.ts b/frontend/app/framework/angular/title.component.ts index 36bfbb0d7..955922331 100644 --- a/frontend/app/framework/angular/title.component.ts +++ b/frontend/app/framework/angular/title.component.ts @@ -9,8 +9,7 @@ import { ChangeDetectionStrategy, Component, Input, OnChanges, OnDestroy } from '@angular/core'; import { ActivatedRoute, Router } from '@angular/router'; -import { TitleService } from '@app/framework/internal'; -import { Types } from '@app/shared'; +import { TitleService, Types } from '@app/framework/internal'; @Component({ selector: 'sqx-title[message]',