Try to stop chrome form autofilling

This commit is contained in:
Henry Whitaker
2021-04-11 10:31:28 +01:00
parent a962865867
commit ce549b5b7a
5 changed files with 30 additions and 13 deletions

View File

@@ -279,11 +279,13 @@ export default class SettingsIndex extends Component {
},
{
obj: data.influx_db_username,
type: 'text'
type: 'text',
autoComplete: false,
},
{
obj: data.influx_db_password,
type: 'password'
type: 'password',
autoComplete: false,
}
],
};