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 Nov 29, 2023
1 parent a450270 commit 1d84f83
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -1626,4 +1626,4 @@
"yargs": "^15.4.1",
"yarn-deduplicate": "^6.0.2"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
*/

import React, { useMemo } from 'react';
import { Change, diffLines } from 'diff';
import type { Change } from 'diff';
import { diffLines } from 'diff';
import { css } from '@emotion/react';
import { euiThemeVars } from '@kbn/ui-theme';
import { EuiSpacer, useEuiBackgroundColor, tint } from '@elastic/eui';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ import React, { useState, useMemo } from 'react';
import { css } from '@emotion/react';
import { euiThemeVars } from '@kbn/ui-theme';
import { get } from 'lodash';
import { Change, diffLines } from 'diff';
import type { Change } from 'diff';
import { diffLines } from 'diff';
import {
EuiSpacer,
EuiAccordion,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ const WholeObjectDiff = ({
toggleSection('whole');
}}
>
<div id="code-diff" dangerouslySetInnerHTML={{ __html: diffHtml }}></div>
<div id="code-diff" dangerouslySetInnerHTML={{ __html: diffHtml }} />
</ExpandableSection>
<EuiHorizontalRule margin="m" />
</>
Expand Down

0 comments on commit 1d84f83

Please sign in to comment.