Skip to content

Commit

Permalink
Added missing DirectiveModule import in standalone LogoutComponent (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
swapnil-verma-gl committed May 31, 2023
1 parent 84c2217 commit 27da2b8
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,11 @@ import { SetSelectedNodesAction } from '@alfresco/aca-shared/store';
import { TranslateModule } from '@ngx-translate/core';
import { MatIconModule } from '@angular/material/icon';
import { MatMenuModule } from '@angular/material/menu';
import { DirectiveModule } from '@alfresco/adf-core';

@Component({
standalone: true,
imports: [TranslateModule, MatIconModule, MatMenuModule],
imports: [TranslateModule, MatIconModule, MatMenuModule, DirectiveModule],
selector: 'aca-logout',
template: `
<button mat-menu-item (click)="onLogoutEvent()" adf-logout>
Expand Down

0 comments on commit 27da2b8

Please sign in to comment.