Skip to content

Commit 4caa377

Browse files
committed
chore(*): fix lint error in ts file
1 parent 6a4d682 commit 4caa377

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/app/grid-finjs/grid-finjs.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ export class GridFinJSComponent {
6161
private strongPositive = (rowData: any): boolean => rowData['Change(%)'] >= 1;
6262
private strongNegative = (rowData: any): boolean => rowData['Change(%)'] <= -1;
6363

64+
// eslint-disable-next-line @typescript-eslint/member-ordering
6465
public trends = {
6566
changeNeg: this.changeNegative,
6667
changePos: this.changePositive,
@@ -69,7 +70,7 @@ export class GridFinJSComponent {
6970
strongNegative: this.strongNegative,
7071
strongPositive: this.strongPositive
7172
};
72-
73+
// eslint-disable-next-line @typescript-eslint/member-ordering
7374
public trendsChange = {
7475
changeNeg2: this.changeNegative,
7576
changePos2: this.changePositive,

0 commit comments

Comments
 (0)