forked from ddrilling/asb_cloud_front
Added message well depth display to monitoring page
This commit is contained in:
parent
ce8596ed87
commit
1897cfacdd
@ -30,6 +30,7 @@ const columns = [
|
||||
title: 'Глубина',
|
||||
key: 'wellDepth',
|
||||
dataIndex: 'wellDepth',
|
||||
render: (_, item) => <span>{_} м.</span>,
|
||||
},
|
||||
{
|
||||
title: 'Категория',
|
||||
|
@ -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',
|
||||
|
Loading…
Reference in New Issue
Block a user