We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe616a7 commit 45738aeCopy full SHA for 45738ae
src/ui/components/forms/index.tsx
@@ -208,7 +208,10 @@ export const FormPasswordField = (
208
{props.showPasswordOption && (
209
<LinkBox
210
style={{ position: 'absolute', right: '10px', top: '36px' }}
211
- onClick={() => setShowPassword(!showPassword)}
+ onClick={(event: any) => {
212
+ event.preventDefault();
213
+ setShowPassword(!showPassword);
214
+ }}
215
>
216
<icons.eye
217
color={showPassword ? iconColors.black : iconColors.grey}
0 commit comments