You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<divclass="grid">
<divclass="grid-item"
*ngFor="let item of items; let i = index"
(click)="lightbox.open(i)">
<img [src]="item.data.thumbnail">
</div>
</div>
Expected lightbox usage with the directive
<divclass="grid">
<divclass="grid-item"
*ngFor="let item of items; let i = index"
[lightbox]="i" [gallery]="galleryId">
<img [src]="item.data.thumbnail">
</div>
</div>
The text was updated successfully, but these errors were encountered:
Current lightbox usage without the directive
Expected lightbox usage with the directive
The text was updated successfully, but these errors were encountered: