more changes

This commit is contained in:
Zaid Abed Jaser
2021-05-03 10:26:03 +02:00
parent 2dc620c723
commit f0ae33c05e
4 changed files with 5 additions and 6 deletions

View File

@@ -23,7 +23,7 @@
<th scope="col" class="staff-list__column-head">
<button class="staff-list__sort-button" (click)="handleSort('utforandeverksamhet')">
Utförandeverksamhet
<ng-container *ngIf="sortBy?.key === 'Utforandeverksamhet'">
<ng-container *ngIf="sortBy?.key === 'utforandeverksamhet'">
<digi-icon-caret-up class="staff-list__sort-icon" *ngIf="!sortBy.reverse"></digi-icon-caret-up>
<digi-icon-caret-down class="staff-list__sort-icon" *ngIf="sortBy.reverse"></digi-icon-caret-down>
</ng-container>

View File

@@ -10,7 +10,8 @@
Det har kommit in nya avrop med deltagare, länken nedan tar dig till fliken Nya deltagare. Du finner den också
i vänster menyn på sidan
</p>
<a [routerLink]="['/mina-deltagare']">Deltagare</a>
<digi-ng-link-internal afText="Deltagare" afRoute="/mina-deltagare"></digi-ng-link-internal>
</digi-info-card>
</div>

View File

@@ -11,10 +11,6 @@
}
&__main {
grid-area: main;
a {
text-decoration: none;
color: var(--digi--typography--color--link);
}
}
&__sidebar {
grid-area: sidebar;

View File

@@ -4,6 +4,7 @@ import { RouterModule } from '@angular/router';
import { StartComponent } from './start.component';
import { DigiNgCardModule } from '@af/digi-ng/_card/card';
import { DigiNgNotificationAlertModule } from '@af/digi-ng/_notification/notification-alert';
import { DigiNgLinkInternalModule } from '@af/digi-ng/_link/link-internal';
@NgModule({
schemas: [CUSTOM_ELEMENTS_SCHEMA],
@@ -13,6 +14,7 @@ import { DigiNgNotificationAlertModule } from '@af/digi-ng/_notification/notific
RouterModule.forChild([{ path: '', component: StartComponent }]),
DigiNgCardModule,
DigiNgNotificationAlertModule,
DigiNgLinkInternalModule,
],
})
export class StartModule {}