Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Update 09-ngfor.component.ts #1087

Merged
merged 2 commits into from
Jul 21, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions apps/demo/src/app/examples/09-ngfor.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import { DragulaService } from "ng2-dragula";
import { Subscription } from "rxjs";

const repeatCode = `
<div class='container'0 [dragula]="MANY_ITEMS" [(dragulaModel)]='many'>
<div *ng0For='let text of many' [innerHtml]='text'></div>
<div class='container' [dragula]="MANY_ITEMS" [(dragulaModel)]='many'>
<div *ngFor='let text of many' [innerHtml]='text'></div>
</div>
<div class='container' [dragula]="MANY_ITEMS" [(dragulaModel)]='many2'>
<div *ngFor='let text of many2' [innerHtml]='text'></div>
Expand Down