Skip to content

Commit e196b15

Browse files
committed
lint(grid-pinning): fix errors
1 parent 185ee4c commit e196b15

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/app/grid/grid-sample-pinning-styling/grid-pinning-styling.component.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {
44
IgxGridComponent,
55
IgxCellHeaderTemplateDirective,
66
IgxIconComponent,
7-
IgxIconService,
7+
IgxIconService
88
} from "igniteui-angular";
99
import { DATA } from "../../data/customers";
1010
import { IgxPreventDocumentScrollDirective } from "../../directives/prevent-scroll.directive";
@@ -18,8 +18,8 @@ import { IgxPreventDocumentScrollDirective } from "../../directives/prevent-scro
1818
IgxPreventDocumentScrollDirective,
1919
IgxColumnComponent,
2020
IgxCellHeaderTemplateDirective,
21-
IgxIconComponent,
22-
],
21+
IgxIconComponent
22+
]
2323
})
2424
export class PinningStylingComponent implements OnInit {
2525
private iconService = inject(IgxIconService);
@@ -29,7 +29,7 @@ export class PinningStylingComponent implements OnInit {
2929
this.iconService.setFamily("fas", {
3030
className: "fas",
3131
type: "font",
32-
prefix: "fa-",
32+
prefix: "fa-"
3333
});
3434
}
3535

@@ -43,20 +43,20 @@ export class PinningStylingComponent implements OnInit {
4343
field: "ContactName",
4444
header: "Contact Name",
4545
width: 200,
46-
pinned: true,
46+
pinned: true
4747
},
4848
{
4949
field: "ContactTitle",
5050
header: "Contact Title",
5151
width: 200,
52-
pinned: true,
52+
pinned: true
5353
},
5454
{ field: "Address", header: "Address", width: 300 },
5555
{ field: "City", header: "City", width: 120 },
5656
{ field: "Region", header: "Region", width: 120 },
5757
{ field: "PostalCode", header: "Postal Code", width: 150 },
5858
{ field: "Phone", header: "Phone", width: 150 },
59-
{ field: "Fax", header: "Fax", width: 150 },
59+
{ field: "Fax", header: "Fax", width: 150 }
6060
];
6161
this.data = DATA;
6262
}

0 commit comments

Comments
 (0)