corrected rotation of sorting arrows

pull/279/head
Tim Pechersky 2021-09-23 19:19:51 +02:00
rodzic 567a80029c
commit 26bcab4d02
1 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -92,8 +92,8 @@ const List = ({ data, revoke, isLoading, update }) => {
boxSize="12px"
transform={
sortBy.direction === SORT_DIRECTION_TYPES.ASC
? "rotate(180deg)"
: "rotate(0deg)"
? "rotate(0deg)"
: "rotate(180deg)"
}
/>
}
@ -122,8 +122,8 @@ const List = ({ data, revoke, isLoading, update }) => {
boxSize="12px"
transform={
sortBy.direction === SORT_DIRECTION_TYPES.ASC
? "rotate(180deg)"
: "rotate(0deg)"
? "rotate(0deg)"
: "rotate(180deg)"
}
/>
}