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 5108f67 commit 4137932Copy full SHA for 4137932
components/input/Password.jsx
@@ -60,6 +60,11 @@ export default {
60
// https://github.com/ant-design/ant-design/issues/15173
61
e.preventDefault();
62
},
63
+ mouseup: e => {
64
+ // Prevent focused state lost
65
+ // https://github.com/ant-design/ant-design/pull/23633/files
66
+ e.preventDefault();
67
+ },
68
69
class: `${prefixCls}-icon`,
70
key: 'passwordIcon',
0 commit comments