We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3392cb8 + 6af7e6e commit 3bee930Copy full SHA for 3bee930
frontend/src/concepts/pipelines/content/tables/experiment/ExperimentTableBase.tsx
@@ -1,5 +1,5 @@
1
import * as React from 'react';
2
-import { IAction } from '@patternfly/react-table';
+import { IAction, TableVariant } from '@patternfly/react-table';
3
import { TableBase, getTableColumnSort, useCheckboxTable } from '~/components/table';
4
import { ExperimentKFv2 } from '~/concepts/pipelines/kfTypes';
5
import { experimentColumns } from '~/concepts/pipelines/content/tables/columns';
@@ -83,6 +83,7 @@ const ExperimentTable: React.FC<ExperimentTableProps> = ({
83
/>
84
)}
85
getColumnSort={getTableColumnSort({ columns: experimentColumns, ...tableProps })}
86
+ variant={TableVariant.compact}
87
data-testid="experiment-table"
88
89
);
0 commit comments