Skip to content

Commit

Permalink
Ingestion list table improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
aniketkatkar97 committed Aug 1, 2024
1 parent 50fe793 commit b8bbe99
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,7 @@ function IngestionListTable({
title: t('label.schedule'),
dataIndex: 'schedule',
key: 'schedule',
width: 240,
render: renderScheduleField,
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@

.pipeline-actions-container {
.ant-btn {
height: 30px;
padding: 4px 8px;
display: flex;
align-items: center;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ export const renderScheduleField = (_: string, record: IngestionPipeline) => {
);

return (
<Row align="middle" gutter={[8, 8]} wrap={false}>
<Col className="flex-center">
<TimeDateIcon height={20} width={20} />
<Row gutter={[8, 8]} wrap={false}>
<Col>
<TimeDateIcon className="m-t-xss" height={20} width={20} />
</Col>
<Col>
<Row className="line-height-16">
Expand Down

0 comments on commit b8bbe99

Please sign in to comment.