Skip to content

Commit

Permalink
[8.17] [Discover] [Dataset Quality] Stringify ignored values before r…
Browse files Browse the repository at this point in the history
…endering (#203312) (#204362)

# Backport

This will backport the following commits from `main` to `8.17`:
- [[Discover] [Dataset Quality] Stringify ignored values before
rendering (#203312)](#203312)

<!--- Backport version: 8.9.8 -->

### Questions?
Please refer to the [Backport tool
documentation](https://github.com/sqren/backport)
  • Loading branch information
weltenwort authored Dec 16, 2024
1 parent 5c42517 commit 832c822
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 832c822

Please sign in to comment.