fix: set password to actual text value
This commit is contained in:
parent
93a63d3714
commit
2ef4a52be0
1 changed files with 1 additions and 1 deletions
|
@ -131,7 +131,7 @@ export default function useUploadOptions(): [
|
||||||
label='Password'
|
label='Password'
|
||||||
description='The password required to view this file. Leave blank for no password.'
|
description='The password required to view this file. Leave blank for no password.'
|
||||||
value={state.password}
|
value={state.password}
|
||||||
onChange={(e) => setState({ password: e })}
|
onChange={(e) => setState({ password: e.currentTarget.value })}
|
||||||
icon={<KeyIcon />}
|
icon={<KeyIcon />}
|
||||||
/>
|
/>
|
||||||
<Group>
|
<Group>
|
||||||
|
|
Loading…
Add table
Reference in a new issue