mirror of
https://git.mirrors.martin98.com/https://github.com/infiniflow/ragflow.git
synced 2025-08-16 03:16:08 +08:00
Fix: Prevent password boxes other than login passwords from displaying passwords saved in the browser's password manager by default. #6033 (#6084)
### What problem does this PR solve? Fix: Prevent password boxes other than login passwords from displaying passwords saved in the browser's password manager by default. #6033 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
parent
5d75b6be62
commit
56e984f657
@ -14,7 +14,10 @@ export function TavilyItem({
|
|||||||
<Form.Item label={'Tavily API Key'} tooltip={t('tavilyApiKeyTip')}>
|
<Form.Item label={'Tavily API Key'} tooltip={t('tavilyApiKeyTip')}>
|
||||||
<div className="flex flex-col gap-1">
|
<div className="flex flex-col gap-1">
|
||||||
<Form.Item name={name} noStyle>
|
<Form.Item name={name} noStyle>
|
||||||
<Input.Password placeholder={t('tavilyApiKeyMessage')} />
|
<Input.Password
|
||||||
|
placeholder={t('tavilyApiKeyMessage')}
|
||||||
|
autoComplete="new-password"
|
||||||
|
/>
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
<Typography.Link href="https://app.tavily.com/home" target={'_blank'}>
|
<Typography.Link href="https://app.tavily.com/home" target={'_blank'}>
|
||||||
{t('tavilyApiKeyHelp')}
|
{t('tavilyApiKeyHelp')}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user