Skip to content

Commit

Permalink
[CI] Auto-commit changed files from 'node scripts/eslint --no-cache -…
Browse files Browse the repository at this point in the history
…-fix'
  • Loading branch information
kibanamachine committed Sep 24, 2024
1 parent 88b08b8 commit 84ee492
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,12 @@ export const RequestFlyout: FunctionComponent<Props> = ({
id: 'request',
name: 'Request',
content: (
<EuiCodeBlock language="json" paddingSize="s" data-test-subj="painlessLabFlyoutRequest" isCopyable>
<EuiCodeBlock
language="json"
paddingSize="s"
data-test-subj="painlessLabFlyoutRequest"
isCopyable
>
{'POST _scripts/painless/_execute\n'}
{requestBody}
</EuiCodeBlock>
Expand All @@ -84,7 +89,12 @@ export const RequestFlyout: FunctionComponent<Props> = ({
id: 'response',
name: 'Response',
content: (
<EuiCodeBlock language="json" paddingSize="s" data-test-subj="painlessLabFlyoutResponse" isCopyable>
<EuiCodeBlock
language="json"
paddingSize="s"
data-test-subj="painlessLabFlyoutResponse"
isCopyable
>
{response}
</EuiCodeBlock>
),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* 2.0.
*/

import expect from '@kbn/expect/expect';
import expect from '@kbn/expect';
import { FtrProviderContext } from '../../ftr_provider_context';

const TEST_SCRIPT = `return 1;`;
Expand Down

0 comments on commit 84ee492

Please sign in to comment.