Change pass to password

This commit is contained in:
D. Domig 2020-09-02 13:04:42 +02:00 committed by Jannis Mattheis
parent aecd3d8081
commit 7993d0eef8
1 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ class SettingsDialog extends Component<IProps & Stores<'currentUser'>> {
autoFocus autoFocus
margin="dense" margin="dense"
type="password" type="password"
label="New Pass *" label="New Password *"
value={pass} value={pass}
onChange={(e) => (this.pass = e.target.value)} onChange={(e) => (this.pass = e.target.value)}
fullWidth fullWidth
@ -47,7 +47,7 @@ class SettingsDialog extends Component<IProps & Stores<'currentUser'>> {
</DialogContent> </DialogContent>
<DialogActions> <DialogActions>
<Button onClick={fClose}>Cancel</Button> <Button onClick={fClose}>Cancel</Button>
<Tooltip title={pass.length !== 0 ? '' : 'pass is required'}> <Tooltip title={pass.length !== 0 ? '' : 'Password is required'}>
<div> <div>
<Button <Button
className="change" className="change"