ui back link

This commit is contained in:
Daniel Appelgren
2021-11-19 11:21:52 +01:00
parent e20abb6da5
commit cc0dc55bc9
2 changed files with 3 additions and 3 deletions

View File

@@ -17,7 +17,7 @@
<dd><digi-typography-time [afDateTime]="signal.startDate"></digi-typography-time></dd>
<footer class="signal-view__footer">
<msfa-back-link route="../../">Tillbaka till deltagaren</msfa-back-link>
<ui-back-link route="../../">Tillbaka till deltagaren</ui-back-link>
</footer>
</div>
</msfa-report-layout>

View File

@@ -1,13 +1,13 @@
import { CommonModule } from '@angular/common';
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';
import { RouterModule } from '@angular/router';
import { BackLinkModule } from '@msfa-shared/components/back-link/back-link.module';
import { LayoutModule } from '@msfa-shared/components/layout/layout.module';
import { UiLoaderModule } from '@ui/loader/loader.module';
import { UiSkeletonModule } from '@ui/skeleton/skeleton.module';
import { ReportLayoutModule } from '../../../components/report-layout/report-layout.module';
import { SignalViewComponent } from './signal-view.component';
import { SignalViewService } from './signal-view.service';
import { UiBackLinkModule } from '@ui/back-link/back-link.module';
@NgModule({
schemas: [CUSTOM_ELEMENTS_SCHEMA],
@@ -17,7 +17,7 @@ import { SignalViewService } from './signal-view.service';
RouterModule.forChild([{ path: '', component: SignalViewComponent }]),
LayoutModule,
ReportLayoutModule,
BackLinkModule,
UiBackLinkModule,
UiLoaderModule,
UiSkeletonModule,
],