mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-18 14:39:44 +00:00
fix: table scroll in column profile table (#10166)
This commit is contained in:
parent
0bea02c202
commit
e30786959b
@ -154,6 +154,7 @@ const ColumnProfileTable: FC<ColumnProfileTableProps> = ({
|
|||||||
title: 'Tests',
|
title: 'Tests',
|
||||||
dataIndex: 'testCount',
|
dataIndex: 'testCount',
|
||||||
key: 'Tests',
|
key: 'Tests',
|
||||||
|
fixed: 'right',
|
||||||
render: (_, record) => (
|
render: (_, record) => (
|
||||||
<Link
|
<Link
|
||||||
data-testid={`${record.name}-test-count`}
|
data-testid={`${record.name}-test-count`}
|
||||||
@ -172,6 +173,7 @@ const ColumnProfileTable: FC<ColumnProfileTableProps> = ({
|
|||||||
dataIndex: 'dataQualityTest',
|
dataIndex: 'dataQualityTest',
|
||||||
key: 'dataQualityTest',
|
key: 'dataQualityTest',
|
||||||
width: 120,
|
width: 120,
|
||||||
|
fixed: 'right',
|
||||||
render: (_, record) => {
|
render: (_, record) => {
|
||||||
const summary =
|
const summary =
|
||||||
columnTestSummary?.[
|
columnTestSummary?.[
|
||||||
@ -201,6 +203,7 @@ const ColumnProfileTable: FC<ColumnProfileTableProps> = ({
|
|||||||
title: 'Actions',
|
title: 'Actions',
|
||||||
dataIndex: 'actions',
|
dataIndex: 'actions',
|
||||||
key: 'actions',
|
key: 'actions',
|
||||||
|
fixed: 'right',
|
||||||
render: (_, record) => (
|
render: (_, record) => (
|
||||||
<Tooltip
|
<Tooltip
|
||||||
placement="bottom"
|
placement="bottom"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user