Skip to content

Commit

Permalink
[ML] Transforms: Fix transforms JSON display (elastic#147996)
Browse files Browse the repository at this point in the history
  • Loading branch information
jgowdyelastic authored Jan 9, 2023
1 parent 748efec commit ba06f68
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export const ExpandedRowJsonPane: FC<Props> = ({ json }) => {
style={{ width: '100%' }}
isCopyable
>
value={JSON.stringify(json, null, 2)}
{JSON.stringify(json, null, 2)}
</EuiCodeBlock>
</EuiFlexItem>
<EuiFlexItem grow={false}>&nbsp;</EuiFlexItem>
Expand Down

0 comments on commit ba06f68

Please sign in to comment.