chore: update ramda
This commit is contained in:
parent
82132e8eb8
commit
ffb66814f6
45 changed files with 2741 additions and 1620 deletions
|
|
@ -20,7 +20,7 @@ const FormRenderer = ({
|
|||
R.map(({ code }) => ({ [code]: (value && value[code]) ?? '' })),
|
||||
)(elements)
|
||||
|
||||
const values = R.merge(initialValues, value)
|
||||
const values = R.mergeRight(initialValues, value)
|
||||
|
||||
const [saveError, setSaveError] = useState([])
|
||||
|
||||
|
|
|
|||
|
|
@ -83,7 +83,7 @@ const Services = () => {
|
|||
|
||||
const getAccounts = ({ elements, code }) => {
|
||||
const account = accounts[code]
|
||||
const filterBySecretComponent = R.filter(R.propEq('component', SecretInput))
|
||||
const filterBySecretComponent = R.filter(R.propEq(SecretInput, 'component'))
|
||||
const mapToCode = R.map(R.prop(['code']))
|
||||
const passwordFields = R.compose(
|
||||
mapToCode,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue