Guest User

Untitled

a guest
Jan 18th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. @Input() budgetDates: BudgetDate[] = [];
  2.  
  3. this.budgetService.getBudgetDays(startDate, finishDate).subscribe({
  4. next(budgetDates: BudgetDate[]) {
  5. self.timelineBudgetDates = self.processDates(budgetDates);
  6. self.changeDetectorRef.detectChanges();
  7. }
  8. });
  9.  
  10. <app-timeline [budgetDates]="timelineBudgetDates"></app-timeline>
Add Comment
Please, Sign In to add comment