Skip to content

Commit

Permalink
Fixed #10205 - Timeline Module missing module export
Browse files Browse the repository at this point in the history
  • Loading branch information
yigitfindikli committed May 6, 2021
1 parent 09c1f32 commit 20dbb86
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/components/timeline/timeline.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {NgModule ,Component, Input, ElementRef, ChangeDetectionStrategy, ViewEncapsulation, AfterContentInit, ContentChildren, QueryList, TemplateRef} from '@angular/core';
import {CommonModule} from '@angular/common';
import {BlockableUI, PrimeTemplate} from 'primeng/api';
import {BlockableUI, PrimeTemplate, SharedModule} from 'primeng/api';

@Component({
selector: 'p-timeline',
Expand Down Expand Up @@ -84,7 +84,7 @@ export class Timeline implements AfterContentInit, BlockableUI {

@NgModule({
imports: [CommonModule],
exports: [Timeline],
exports: [Timeline, SharedModule],
declarations: [Timeline]
})
export class TimelineModule { }

0 comments on commit 20dbb86

Please sign in to comment.