mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
# Backport This will backport the following commits from `main` to `8.6`: - [[ML] Transforms: Fix transforms JSON display (#147996)](https://github.com/elastic/kibana/pull/147996) <!--- Backport version: 8.9.7 --> ### Questions ? Please refer to the [Backport tool documentation](https://github.com/sqren/backport) <!--BACKPORT [{"author":{"name":"James Gowdy","email":"jgowdy@elastic.co"},"sourceCommit":{"committedDate":"2023-01-09T14:58:56Z","message":"[ML] Transforms: Fix transforms JSON display (#147996)\n\nFixing a typo in the code from when the JSON editor was\r\n[converted](https://github.com/elastic/kibana/pull/108310) from using\r\n`EuiCodeEditor`\r\n\r\n**Before**\r\n\r\n","sha":"ba06f687522fed393036ff01d9230f341e37d710","branchLabelMapping":{"^v8.7.0$":"main","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":["bug","release_note:fix",":ml","Feature:Transforms","v8.6.0","v8.7.0"],"number":147996,"url":"https://github.com/elastic/kibana/pull/147996","mergeCommit":{"message":"[ML] Transforms: Fix transforms JSON display (#147996)\n\nFixing a typo in the code from when the JSON editor was\r\n[converted](https://github.com/elastic/kibana/pull/108310) from using\r\n`EuiCodeEditor`\r\n\r\n**Before**\r\n\r\n","sha":"ba06f687522fed393036ff01d9230f341e37d710"}},"sourceBranch":"main","suggestedTargetBranches":["8.6"],"targetPullRequestStates":[{"branch":"8.6","label":"v8.6.0","labelRegex":"^v(\\d+).(\\d+).\\d+$","isSourceBranch":false,"state":"NOT_CREATED"},{"branch":"main","label":"v8.7.0","labelRegex":"^v8.7.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/147996","number":147996,"mergeCommit":{"message":"[ML] Transforms: Fix transforms JSON display (#147996)\n\nFixing a typo in the code from when the JSON editor was\r\n[converted](https://github.com/elastic/kibana/pull/108310) from using\r\n`EuiCodeEditor`\r\n\r\n**Before**\r\n\r\n","sha":"ba06f687522fed393036ff01d9230f341e37d710"}}]}] BACKPORT--> Co-authored-by: James Gowdy <jgowdy@elastic.co>
This commit is contained in:
parent
c35e1a3604
commit
835eeb4652
2 changed files with 1 additions and 2 deletions
|
@ -21,7 +21,6 @@ exports[`Transform: Transform List Expanded Row <ExpandedRowJsonPane /> Minimal
|
|||
}
|
||||
}
|
||||
>
|
||||
value=
|
||||
{
|
||||
"id": "fq_date_histogram_1m_1441",
|
||||
"source": {
|
||||
|
|
|
@ -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}> </EuiFlexItem>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue