diff --git a/src/pages/contracts/components/ContractsTable/ContractsTable.jsx b/src/pages/contracts/components/ContractsTable/ContractsTable.jsx index 269dca9d..2d2432ca 100644 --- a/src/pages/contracts/components/ContractsTable/ContractsTable.jsx +++ b/src/pages/contracts/components/ContractsTable/ContractsTable.jsx @@ -25,15 +25,16 @@ class ContractsTable extends Component { Cell: ({ value }) => , }, { - Header: 'Status', + Header: 'Active until', accessor: 'expiryBlock', + minWidth: config.ui.table.minCellWidth, sortable: true, - Cell: ({ value }) => - value ? `Active until block ${TextUtils.formatNumber(value)}` : 'Inactive', + Cell: ({ value }) => (value ? TextUtils.formatNumber(value) : 'Inactive'), }, { Header: 'Txs', accessor: 'txsCount', + minWidth: config.ui.table.minCellWidth, sortable: true, hideOnMobile: true, Cell: ({ value }) => TextUtils.formatNumber(value), @@ -41,12 +42,14 @@ class ContractsTable extends Component { { Header: 'Assets Issued', accessor: 'assetsIssued', + minWidth: config.ui.table.minCellWidth, hideOnMobile: true, Cell: ({ value }) => TextUtils.formatNumber(value), }, { Header: 'Activation', accessor: 'lastActivationBlock', + minWidth: config.ui.table.minCellWidth, sortable: true, hideOnMobile: true, Cell: ({ value }) => {TextUtils.formatNumber(value)},