Кнопка рекомендации перенесена вверх, добавлен скроллинг таблицы

This commit is contained in:
Александр Сироткин 2022-03-09 17:47:08 +05:00
parent 2b227e9777
commit ab0a100a05

View File

@ -78,14 +78,17 @@ export const Setpoints = ({ idWell, ...other }) => {
</Button>
<Modal
width={1200}
title={'Рекомендованные уставки'}
title={(
<>
<span style={{ marginRight: '15px' }}>Рекомендованные уставки</span>
<Button onClick={() => setIsSenderVisible(true)} disabled={!hasPermission('Setpoints.edit')}>
Рекомендовать
</Button>
</>
)}
visible={isModalVisible}
onCancel={() => setIsModalVisible(false)}
footer={(
<Button onClick={() => setIsSenderVisible(true)} disabled={!hasPermission('Setpoints.edit')}>
Рекомендовать
</Button>
)}
footer={null}
>
<LoaderPortal show={isLoading}>
<Table
@ -94,6 +97,7 @@ export const Setpoints = ({ idWell, ...other }) => {
columns={historyColumns}
dataSource={setpoints}
pagination={false}
scroll={{ y: '60vh', scrollToFirstRowOnChange: true }}
/>
</LoaderPortal>
</Modal>