From e38b31a2205fe07142efa91a527bb2840cc26f4c Mon Sep 17 00:00:00 2001 From: Bogdan Date: Fri, 2 Feb 2024 23:21:19 +0200 Subject: [PATCH] Fix table columns order for Interactive Search --- .../src/InteractiveSearch/InteractiveSearch.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/frontend/src/InteractiveSearch/InteractiveSearch.js b/frontend/src/InteractiveSearch/InteractiveSearch.js index d3fa3ca14..8c3f2c410 100644 --- a/frontend/src/InteractiveSearch/InteractiveSearch.js +++ b/frontend/src/InteractiveSearch/InteractiveSearch.js @@ -88,13 +88,6 @@ const columns = [ isSortable: true, isVisible: true }, - { - name: 'releaseWeight', - label: React.createElement(Icon, { name: icons.DOWNLOAD }), - isSortable: true, - fixedSortDirection: sortDirections.ASCENDING, - isVisible: true - }, { name: 'rejections', label: React.createElement(Icon, { @@ -104,6 +97,13 @@ const columns = [ isSortable: true, fixedSortDirection: sortDirections.ASCENDING, isVisible: true + }, + { + name: 'releaseWeight', + label: React.createElement(Icon, { name: icons.DOWNLOAD }), + isSortable: true, + fixedSortDirection: sortDirections.ASCENDING, + isVisible: true } ];