Skip to content

Commit 606e182

Browse files
committed
[ML] center alignment
1 parent 822b116 commit 606e182

File tree

1 file changed

+1
-1
lines changed
  • x-pack/legacy/plugins/ml/public/application/datavisualizer/index_based/components/field_data_card/examples_list

1 file changed

+1
-1
lines changed

x-pack/legacy/plugins/ml/public/application/datavisualizer/index_based/components/field_data_card/examples_list/examples_list.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export const ExamplesList: FC<Props> = ({ examples }) => {
2222
const examplesContent = examples.map((example, i) => {
2323
return (
2424
<EuiListGroupItem
25-
style={{ padding: 0 }}
25+
style={{ padding: 0, justifyContent: 'center' }}
2626
size="xs"
2727
key={`example_${i}`}
2828
label={typeof example === 'string' ? example : JSON.stringify(example)}

0 commit comments

Comments
 (0)