Skip to content

Commit

Permalink
[Discover] [Dataset Quality] Stringify ignored values before rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
weltenwort committed Dec 6, 2024
1 parent f84e491 commit 6358f6f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ const getDegradedFieldsColumns = (): Array<EuiBasicTableColumn<DegradedField>> =
sortable: true,
field: 'values',
render: (values: string[]) => {
return values.map((value, idx) => <EuiBadge key={idx}>{value}</EuiBadge>);
return values.map((value, idx) => <EuiBadge key={idx}>{JSON.stringify(value)}</EuiBadge>);
},
},
];
Expand Down

0 comments on commit 6358f6f

Please sign in to comment.