fix: update pwd input

pull/5925/head
Pavel Zavora 2022-06-06 11:21:36 +02:00
parent 9d19b98e2f
commit 521dc57cf6
1 changed files with 2 additions and 0 deletions

View File

@ -2,6 +2,7 @@ import React, {useCallback, useState} from 'react'
import {
Form,
Input,
InputType,
OverlayBody,
OverlayContainer,
OverlayHeading,
@ -37,6 +38,7 @@ const CreateUserDialog = ({visible = true, setVisible, create}: Props) => {
<Form.Element label="Password">
<Input
value={password}
type={InputType.Password}
onChange={e => setPassword(e.target.value)}
/>
</Form.Element>