Skip to content

Commit e0ae6d8

Browse files
MKirovaMKirova
authored andcommitted
chore(*): Fixing lint in sample.
1 parent c79332a commit e0ae6d8

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

src/app/grid-re-create/grid-re-create.sample.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<div *ngIf="create">
2-
<igx-grid height="300px">
2+
<igx-grid [moving]="true" height="300px">
33
<igx-column [field]="'columnA'"></igx-column>
44
<igx-column [field]="'columnB'"></igx-column>
55
</igx-grid>

src/app/grid-re-create/grid-re-create.sample.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ export class GridRecreateSampleComponent implements OnInit {
1818
public create = false;
1919

2020
public ngOnInit(): void {
21-
// new Array(100).fill({}).forEach((_, i) => {
22-
// this.data.push({
23-
// id: i,
24-
// columnA: `A ${i}`,
25-
// columnB: `B ${i}`,
26-
// });
27-
// });
21+
new Array(100).fill({}).forEach((_, i) => {
22+
this.data.push({
23+
id: i,
24+
columnA: `A ${i}`,
25+
columnB: `B ${i}`,
26+
});
27+
});
2828
}
2929

3030
}

0 commit comments

Comments
 (0)