Skip to content

Commit

Permalink
Remove md5-hex wrapper and use blueimp-md5 directly
Browse files Browse the repository at this point in the history
  • Loading branch information
deluan committed May 20, 2021
1 parent 0ec7a30 commit e529390
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 14 deletions.
14 changes: 3 additions & 11 deletions ui/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 ui/package.json
Expand Up @@ -7,6 +7,7 @@
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"@material-ui/styles": "^4.11.4",
"blueimp-md5": "^2.18.0",
"clsx": "^1.1.1",
"connected-react-router": "^6.9.1",
"deepmerge": "^4.2.2",
Expand All @@ -15,7 +16,6 @@
"jwt-decode": "^3.1.2",
"lodash.pick": "^4.4.0",
"lodash.throttle": "^4.1.1",
"md5-hex": "^3.0.1",
"prop-types": "^15.7.2",
"ra-data-json-server": "^3.15.1",
"ra-i18n-polyglot": "^3.15.1",
Expand Down
2 changes: 1 addition & 1 deletion ui/src/authProvider.js
@@ -1,5 +1,5 @@
import jwtDecode from 'jwt-decode'
import md5 from 'md5-hex'
import md5 from 'blueimp-md5'
import { v4 as uuidv4 } from 'uuid'
import { baseUrl } from './utils'
import config from './config'
Expand Down
2 changes: 1 addition & 1 deletion ui/src/common/MultiLineTextField.js
@@ -1,7 +1,7 @@
import React, { memo } from 'react'
import Typography from '@material-ui/core/Typography'
import sanitizeFieldRestProps from './sanitizeFieldRestProps'
import md5 from 'md5-hex'
import md5 from 'blueimp-md5'

export const MultiLineTextField = memo(
({
Expand Down

0 comments on commit e529390

Please sign in to comment.