Merge branch 'master' into save-icon

This commit is contained in:
Kim Gardner
2018-05-07 15:23:11 -04:00
committed by GitHub
2 changed files with 9 additions and 5 deletions
@@ -14,7 +14,11 @@ const initialState = {
editing: false,
showErrors: true,
errors: {},
formData: {},
formData: {
oldPassword: '',
newPassword: '',
confirmNewPassword: '',
},
};
class ChangePassword extends React.Component {
@@ -19,13 +19,13 @@ const InputField = ({
showSuccess = false,
validationType = '',
icon = '',
value = '',
defaultValue = '',
value,
defaultValue,
disabled = false,
}) => {
const inputValue = {
...(value ? { value } : {}),
...(defaultValue ? { defaultValue } : {}),
...(value !== undefined ? { value } : {}),
...(defaultValue !== undefined ? { defaultValue } : {}),
};
return (