Ширина полей на странице сообщений исправлена

This commit is contained in:
goodmice 2021-10-29 17:10:16 +05:00
parent f549219be2
commit a6f52e6aab

View File

@ -21,16 +21,19 @@ const categoryDictionary = {
const columns = [
{
width: '10%',
title: 'Дата',
key: 'date',
dataIndex: 'date',
render: item => moment(item).format('DD MMM YYYY, HH:mm:ss'),
}, {
width: '10%',
title: 'Глубина',
key: 'wellDepth',
dataIndex: 'wellDepth',
render: depth => <span>{depth.toFixed(2)} м.</span>,
}, {
width: '10%',
title: 'Категория',
key: 'categoryId',
dataIndex: 'categoryId',
@ -42,6 +45,7 @@ const columns = [
key: 'message',
dataIndex: 'message',
}, {
width: '10%',
title: 'Пользователь',
key: 'user',
dataIndex: 'user',