Skip to content
This repository was archived by the owner on Apr 5, 2022. It is now read-only.

Commit 9ebae30

Browse files
committed
removed space issue
1 parent 743e7c7 commit 9ebae30

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

packages/visual-stack/src/components/Table/DataTable/sortingHelper.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ export const DESCENDING = 'descending';
99
export const getSortingIcon = (sortingOption, currentLabel) => {
1010
let icon = null;
1111
if (sortingOption.order === ASCENDING) {
12-
icon = <ArrowUpIcon/>;
12+
icon = <ArrowUpIcon />;
1313
}
1414
if (sortingOption.order === DESCENDING) {
15-
icon = <ArrowDownIcon/>;
15+
icon = <ArrowDownIcon />;
1616
}
1717
if (sortingOption.label !== currentLabel) {
18-
icon = <ArrowDownIcon className="vs-unsorted-row-icon"/>;
18+
icon = <ArrowDownIcon className="vs-unsorted-row-icon" />;
1919
}
2020
return icon;
2121
};

0 commit comments

Comments
 (0)