Skip to content

Commit

Permalink
Refactor primefaces#10207
Browse files Browse the repository at this point in the history
  • Loading branch information
yigitfindikli committed May 7, 2021
1 parent 3408c7a commit 96155e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/carousel/carousel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ import { UniqueComponentId } from 'primeng/utils';
</div>
<ul [ngClass]="'p-carousel-indicators p-reset'" [class]="indicatorsContentClass" [ngStyle]="indicatorsContentStyle" *ngIf="showIndicators">
<li *ngFor="let totalDot of totalDotsArray(); let i = index" [ngClass]="{'p-carousel-indicator':true,'p-highlight': _page === i}">
<button type="button" class="p-link" (click)="onDotClick($event, i)" [class]="indicatorStyleClass" [ngStyle]="indicatorStyle"></button>
<button type="button" [ngClass]="'p-link'" (click)="onDotClick($event, i)" [class]="indicatorStyleClass" [ngStyle]="indicatorStyle"></button>
</li>
</ul>
</div>
Expand Down

0 comments on commit 96155e5

Please sign in to comment.