Merge branch 'master' into settings

This commit is contained in:
Wyatt Johnson
2018-05-07 14:31:09 -06:00
3 changed files with 10 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 (
@@ -29,6 +29,7 @@
.actions {
flex-grow: 0;
flex-shrink: 0;
display: flex;
flex-direction: column;
align-items: center;