Skip to content

Commit

Permalink
fix(avatar): fixed router-link missing importation
Browse files Browse the repository at this point in the history
  • Loading branch information
AntoninoBonanno committed Jan 14, 2024
1 parent 409c411 commit 0bbb7cb
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { Component, ViewChild, TemplateRef, ContentChildren, QueryList, Input, ViewEncapsulation } from '@angular/core';
import { ItDropdownModule } from '../../dropdown/dropdown.module';
import { NgForOf, NgIf, NgTemplateOutlet } from '@angular/common';
import { RouterLink } from '@angular/router';


@Component({
Expand Down Expand Up @@ -36,7 +37,7 @@ export class ItAvatarDropdownItemComponent{
templateUrl: './avatar-dropdown.component.html',
styleUrls: ['./avatar-dropdown.component.scss'],
host: { 'class': 'avatar avatar-dropdown' },
imports: [ItDropdownModule, NgTemplateOutlet, NgForOf, NgIf]
imports: [ItDropdownModule, NgTemplateOutlet, NgForOf, NgIf, RouterLink]
})
export class ItAvatarDropdownComponent{
constructor() { }
Expand Down

0 comments on commit 0bbb7cb

Please sign in to comment.