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

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