Pull request: 4899 show filter update time
Updates #4899 Squashed commit of the following: commit 32ea8f3854619be4a3bb125d5c3ef02ba8ef5439 Author: Ildar Kamalov <ik@adguard.com> Date: Thu Sep 15 19:22:22 2022 +0300 client: show hidden filter update time
This commit is contained in:
parent
fc62796e2d
commit
663f0643f2
|
@ -41,13 +41,13 @@ class Table extends Component {
|
||||||
{
|
{
|
||||||
Header: <Trans>name_table_header</Trans>,
|
Header: <Trans>name_table_header</Trans>,
|
||||||
accessor: 'name',
|
accessor: 'name',
|
||||||
minWidth: 200,
|
minWidth: 180,
|
||||||
Cell: CellWrap,
|
Cell: CellWrap,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
Header: <Trans>list_url_table_header</Trans>,
|
Header: <Trans>list_url_table_header</Trans>,
|
||||||
accessor: 'url',
|
accessor: 'url',
|
||||||
minWidth: 200,
|
minWidth: 180,
|
||||||
Cell: ({ value }) => (
|
Cell: ({ value }) => (
|
||||||
<div className="logs__row">
|
<div className="logs__row">
|
||||||
{isValidAbsolutePath(value) ? value
|
{isValidAbsolutePath(value) ? value
|
||||||
|
@ -73,7 +73,7 @@ class Table extends Component {
|
||||||
Header: <Trans>last_time_updated_table_header</Trans>,
|
Header: <Trans>last_time_updated_table_header</Trans>,
|
||||||
accessor: 'lastUpdated',
|
accessor: 'lastUpdated',
|
||||||
className: 'text-center',
|
className: 'text-center',
|
||||||
minWidth: 150,
|
minWidth: 180,
|
||||||
Cell: this.getDateCell,
|
Cell: this.getDateCell,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue