Skip to content

Commit ac23ea0

Browse files
author
CALABRO Raphael (UA 2118)
committed
Fixed code style.
1 parent afb98fb commit ac23ea0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/DataTable.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ export interface DataEvent {
2222
export type SortOrder = "asc" | "desc";
2323

2424
@Directive({
25-
selector: 'table[mfData]',
26-
exportAs: 'mfDataTable'
25+
selector: "table[mfData]",
26+
exportAs: "mfDataTable"
2727
})
2828
export class DataTable implements OnChanges, DoCheck {
2929

@@ -146,7 +146,7 @@ export class DataTable implements OnChanges, DoCheck {
146146
return (row: any): any => {
147147
let value = row;
148148
for (const sortByProperty of sortBy.split(".")) {
149-
if(value) {
149+
if (value) {
150150
value = value[sortByProperty];
151151
}
152152
}

0 commit comments

Comments
 (0)