Fixed and improved the wording in configuration export and import modals.

This commit is contained in:
VakarisZ 2021-06-01 11:42:54 +03:00
parent 5ab0137f27
commit 7954dbe1e7
2 changed files with 2 additions and 2 deletions

View File

@ -105,7 +105,7 @@ const ExportPlaintextChoiceField = (props: {
/> />
<p className={`export-warning text-secondary`}> <p className={`export-warning text-secondary`}>
Configuration may contain stolen credentials or sensitive data.<br/> Configuration may contain stolen credentials or sensitive data.<br/>
It is advised to use password encryption. It is advised to use the <b>Encrypt with a password</b> option.
</p> </p>
</div> </div>
) )

View File

@ -134,7 +134,7 @@ const PasswordInput = (props: {
}) => { }) => {
return ( return (
<div className={'config-import-password-input'}> <div className={'config-import-password-input'}>
<p>File is protected. Enter password:</p> <p>File is protected. Please enter the password:</p>
<Form.Control type='password' <Form.Control type='password'
placeholder='Password' placeholder='Password'
onChange={evt => (props.onChange(evt.target.value))}/> onChange={evt => (props.onChange(evt.target.value))}/>