Skip to content

Commit

Permalink
build: replace react-html-parser with html-react-parser
Browse files Browse the repository at this point in the history
  • Loading branch information
lwhiteley committed Oct 6, 2024
1 parent 890997b commit 1a541bf
Show file tree
Hide file tree
Showing 3 changed files with 174 additions and 105 deletions.
275 changes: 172 additions & 103 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
"express-rate-limit": "^7.1.5",
"express-session": "^1.17.1",
"history": "5.3.0",
"html-react-parser": "^5.1.17",
"jsonschema": "^1.4.1",
"load-plugin": "^6.0.0",
"lodash": "^4.17.21",
Expand All @@ -63,7 +64,6 @@
"prop-types": "15.8.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-html-parser": "^2.0.2",
"react-router-dom": "6.26.2",
"uuid": "^10.0.0",
"yargs": "^17.7.2"
Expand Down
2 changes: 1 addition & 1 deletion src/ui/views/PushDetails/components/Diff.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as Diff2Html from 'diff2html';
import ReactHtmlParser from 'react-html-parser';
import ReactHtmlParser from 'html-react-parser';

export default function Diff(props) {
const { diff } = props;
Expand Down

0 comments on commit 1a541bf

Please sign in to comment.