diff --git a/projects/components/src/header/application/application-header.module.ts b/projects/components/src/header/application/application-header.module.ts index b03fd14fb..a03a90e28 100644 --- a/projects/components/src/header/application/application-header.module.ts +++ b/projects/components/src/header/application/application-header.module.ts @@ -1,3 +1,4 @@ +import { CommonModule } from '@angular/common'; import { NgModule } from '@angular/core'; import { IconModule } from '../../icon/icon.module'; import { SelectModule } from '../../select/select.module'; @@ -5,7 +6,7 @@ import { TimeRangeModule } from '../../time-range/time-range.module'; import { ApplicationHeaderComponent } from './application-header.component'; @NgModule({ - imports: [IconModule, SelectModule, TimeRangeModule], + imports: [CommonModule, IconModule, SelectModule, TimeRangeModule], declarations: [ApplicationHeaderComponent], exports: [ApplicationHeaderComponent] })