Skip to content

Commit

Permalink
fix(ui): Adjusting the view of the Column Stats (datahub-project#9430)
Browse files Browse the repository at this point in the history
  • Loading branch information
Salman-Apptware authored Dec 11, 2023
1 parent e4d8dcb commit 5ac854d
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ type Props = {
const StatSection = styled.div`
padding: 20px 20px;
overflow: auto;
display: flex;
flex-direction: column;
`;

const NameText = styled(Typography.Text)`
Expand Down Expand Up @@ -162,7 +164,12 @@ export default function ColumnStats({ columnStats }: Props) {
return (
<StatSection>
<Typography.Title level={5}>Column Stats</Typography.Title>
<StyledTable pagination={false} columns={columnStatsColumns} dataSource={columnStatsTableData} />
<StyledTable
pagination={false}
columns={columnStatsColumns}
dataSource={columnStatsTableData}
sticky
/>
</StatSection>
);
}

0 comments on commit 5ac854d

Please sign in to comment.