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
This code creates an additional card for each item in the datasource input. If I remove the ng-container it is fine.
<ngu-carousel #carousel dataSource]="models" [inputs]="carouselConfig"> <ngu-item *nguCarouselDef="let item; let j = index"> <div class="model-card-list-carousel-card"> <ng-container [ngTemplateOutlet]="cardTemplate" [ngTemplateOutletContext]="{ model: item }"></ng-container> </div> </ngu-item> <button mat-icon-button NguCarouselPrev class="carousel-left" [hidden]="carousel.isFirst"> <mat-icon>navigate_before</mat-icon> </button> <button mat-icon-button NguCarouselNext class="carousel-right" [hidden]="carousel.isLast"> <mat-icon>navigate_next</mat-icon> </button> </ngu-carousel>
The text was updated successfully, but these errors were encountered:
Hi @kojilab , Can you provide stackblitz to debug the issue.
Sorry, something went wrong.
santoshyadavdev
No branches or pull requests
This code creates an additional card for each item in the datasource input. If I remove the ng-container it is fine.
The text was updated successfully, but these errors were encountered: