Bring in the change password section
This also changes the layout slightly in the user settings, but nothing detrimental.
This commit is contained in:
parent
677b3ca7b5
commit
19de6694ca
7 changed files with 94 additions and 36 deletions
|
@ -31,6 +31,11 @@ export default class Field extends React.PureComponent {
|
|||
// To define options for a select, use <Field><option ... /></Field>
|
||||
element: PropTypes.string,
|
||||
// All other props pass through to the <input>.
|
||||
};
|
||||
|
||||
get value() {
|
||||
if (!this.refs.fieldInput) return null;
|
||||
return this.refs.fieldInput.value;
|
||||
}
|
||||
|
||||
render() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue