From 663f0643f2b41b5f1b1d198e616632e7ce86c556 Mon Sep 17 00:00:00 2001 From: Ildar Kamalov Date: Fri, 16 Sep 2022 12:43:27 +0300 Subject: [PATCH] Pull request: 4899 show filter update time Updates #4899 Squashed commit of the following: commit 32ea8f3854619be4a3bb125d5c3ef02ba8ef5439 Author: Ildar Kamalov Date: Thu Sep 15 19:22:22 2022 +0300 client: show hidden filter update time --- client/src/components/Filters/Table.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/src/components/Filters/Table.js b/client/src/components/Filters/Table.js index 53c22721..045d4be4 100644 --- a/client/src/components/Filters/Table.js +++ b/client/src/components/Filters/Table.js @@ -41,13 +41,13 @@ class Table extends Component { { Header: name_table_header, accessor: 'name', - minWidth: 200, + minWidth: 180, Cell: CellWrap, }, { Header: list_url_table_header, accessor: 'url', - minWidth: 200, + minWidth: 180, Cell: ({ value }) => (
{isValidAbsolutePath(value) ? value @@ -73,7 +73,7 @@ class Table extends Component { Header: last_time_updated_table_header, accessor: 'lastUpdated', className: 'text-center', - minWidth: 150, + minWidth: 180, Cell: this.getDateCell, }, {