mirror of
https://github.com/whyour/qinglong.git
synced 2026-08-12 19:30:48 +08:00
修复多语言翻译
This commit is contained in:
@@ -188,7 +188,7 @@ const SecuritySettings = ({ user, userChange }: any) => {
|
||||
hasFeedback
|
||||
style={{ maxWidth: 300 }}
|
||||
>
|
||||
<Input placeholder={intl.get('用户名')} />
|
||||
<Input autoComplete="username" placeholder={intl.get('用户名')} />
|
||||
</Form.Item>
|
||||
<Form.Item
|
||||
label={intl.get('密码')}
|
||||
@@ -203,7 +203,11 @@ const SecuritySettings = ({ user, userChange }: any) => {
|
||||
hasFeedback
|
||||
style={{ maxWidth: 300 }}
|
||||
>
|
||||
<Input type="password" placeholder={intl.get('密码')} />
|
||||
<Input
|
||||
type="password"
|
||||
autoComplete="current-password"
|
||||
placeholder={intl.get('密码')}
|
||||
/>
|
||||
</Form.Item>
|
||||
<Button type="primary" htmlType="submit">
|
||||
{intl.get('保存')}
|
||||
|
||||
Reference in New Issue
Block a user