We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I have this little project here
My template
<owl-carousel-o [options]="carouselOptions"> <inf-new-arrivals *carouselSlide></inf-new-arrivals> <inf-team-charta *carouselSlide></inf-team-charta> </owl-carousel-o>
The corresponding .ts
export class AppComponent { carouselOptions: OwlOptions = { loop: true, autoplay: true, autoplaySpeed: 2000, autoplayTimeout: 2500, dots: true, responsive: { 0: { items: 1 } }, } }
And one component
export class TeamChartComponent { employees$: Observable<string[]>; constructor(private calendar: CalendarService) { console.log("WOW") this.employees$ = this.calendar.getEmployeeReservations('ID',NUMBER); } }
Now what happens here is that the constructor is called 3 times, so I see 3 "WOW"s in my console. I believe this isn't supposed to be like that.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
I have this little project here
My template
The corresponding .ts
And one component
Now what happens here is that the constructor is called 3 times, so I see 3 "WOW"s in my console.
I believe this isn't supposed to be like that.
The text was updated successfully, but these errors were encountered: