Skip to content

Commit

Permalink
fix(docs): fixing typo '0' in ngFor directive (#1087)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-pawo committed Jul 21, 2023
1 parent 74b56c6 commit a6835aa
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit a6835aa

Please sign in to comment.