sinequa / ngx-ui-builder

An Angular library for creating no code tools & applications
https://sinequa.github.io/ngx-ui-builder/
MIT License
81 stars 8 forks source link

(fix) missing $implicit keyword in zone component #82

Closed hebus closed 1 year ago

hebus commented 1 year ago

Without this keyword, let-data is undefined here:

<!-- data is an array -->
<ng-template #array let-data>
  <ng-container *ngFor="let d of data; let index = index; let first = first"
    [ngTemplateOutlet]="zone"
    [ngTemplateOutletContext]="{ index, first }">
  </ng-container>
</ng-template>