Added message well depth display to monitoring page

This commit is contained in:
KharchenkoVV 2021-09-24 11:45:25 +05:00
parent ce8596ed87
commit 1897cfacdd
2 changed files with 7 additions and 0 deletions

View File

@ -30,6 +30,7 @@ const columns = [
title: 'Глубина',
key: 'wellDepth',
dataIndex: 'wellDepth',
render: (_, item) => <span>{_} м.</span>,
},
{
title: 'Категория',

View File

@ -25,6 +25,12 @@ const columns = [
sorter: (a, b) => new Date(b.date) - new Date(a.date),
sortDirections: ['descend', 'ascend'],
},
{
title: 'Глубина',
key: 'wellDepth',
dataIndex: 'wellDepth',
render: (_, item) => <span>Глубина {_} м.</span>,
},
{
title: 'Категория',
dataIndex: 'categoryId',