From 26bcab4d02f0f84399e71090f108f039ac178dd9 Mon Sep 17 00:00:00 2001 From: Tim Pechersky Date: Thu, 23 Sep 2021 19:19:51 +0200 Subject: [PATCH] corrected rotation of sorting arrows --- frontend/src/components/TokensList.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/src/components/TokensList.js b/frontend/src/components/TokensList.js index 10c4d7ed..90bb7ca6 100644 --- a/frontend/src/components/TokensList.js +++ b/frontend/src/components/TokensList.js @@ -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)" } /> }