Skip to content

Commit 6233c25

Browse files
ZabilsyaZabilsya
andauthored
[DOP-22621] fix some bugs (#54)
Co-authored-by: Zabilsya <[email protected]>
1 parent 55cb789 commit 6233c25

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

src/app/styles/antd.less

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,10 @@
2525
.ant-table-cell {
2626
word-break: break-word;
2727
}
28+
29+
.ant-avatar,
30+
.ant-modal-close-x {
31+
display: flex;
32+
justify-content: center;
33+
align-items: center;
34+
}

src/features/queue/UpdateQueue/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export const UpdateQueue = ({ queue, group }: UpdateQueueProps) => {
3636
<FormCurrentGroupDescription groupName={group.name} />
3737

3838
<Form.Item label="Name" name="name" rules={[{ required: true, pattern: QUEUE_NAME_REGEXP }]}>
39-
<Input size="large" />
39+
<Input size="large" disabled />
4040
</Form.Item>
4141

4242
<Form.Item label="Description" name="description">

src/features/transfer/TransferDetailInfo/index.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ export const TransferDetailInfo = ({
3838
<Descriptions.Item label="Schedule" span={3}>
3939
{transfer.schedule}
4040
</Descriptions.Item>
41+
<Descriptions.Item label="Strategy params" span={3}>
42+
{transfer.strategy_params.type}
43+
</Descriptions.Item>
4144
<Descriptions.Item label="Source connection" span={3}>
4245
<Link to={`/connections/${connectionSource.id}`}>{connectionSource.name}</Link>
4346
</Descriptions.Item>

0 commit comments

Comments
 (0)