Skip to content

Commit

Permalink
[DOP-22621] fix some bugs (#54)
Browse files Browse the repository at this point in the history
Co-authored-by: Zabilsya <[email protected]>
  • Loading branch information
Zabilsya and Zabilsya authored Dec 16, 2024
1 parent 55cb789 commit 6233c25
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
7 changes: 7 additions & 0 deletions src/app/styles/antd.less
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,10 @@
.ant-table-cell {
word-break: break-word;
}

.ant-avatar,
.ant-modal-close-x {
display: flex;
justify-content: center;
align-items: center;
}
2 changes: 1 addition & 1 deletion src/features/queue/UpdateQueue/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export const UpdateQueue = ({ queue, group }: UpdateQueueProps) => {
<FormCurrentGroupDescription groupName={group.name} />

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

<Form.Item label="Description" name="description">
Expand Down
3 changes: 3 additions & 0 deletions src/features/transfer/TransferDetailInfo/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ export const TransferDetailInfo = ({
<Descriptions.Item label="Schedule" span={3}>
{transfer.schedule}
</Descriptions.Item>
<Descriptions.Item label="Strategy params" span={3}>
{transfer.strategy_params.type}
</Descriptions.Item>
<Descriptions.Item label="Source connection" span={3}>
<Link to={`/connections/${connectionSource.id}`}>{connectionSource.name}</Link>
</Descriptions.Item>
Expand Down

0 comments on commit 6233c25

Please sign in to comment.