mirror of
https://github.com/wassname/talk.git
synced 2026-07-09 23:12:09 +08:00
Merge branch 'master' into save-icon
This commit is contained in:
@@ -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 (
|
||||
|
||||
Reference in New Issue
Block a user