1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Fix 10706 - Prevent autocomplete from add token input (#10700)

This commit is contained in:
David Walsh 2021-03-24 19:24:51 -05:00 committed by GitHub
parent 0fdc8a42ce
commit c14919c60f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 0 deletions

View File

@ -90,6 +90,7 @@ const getMaterialThemeInputProps = ({
startAdornment,
min,
max,
autoComplete,
}) => ({
InputLabelProps: {
classes: {
@ -107,6 +108,7 @@ const getMaterialThemeInputProps = ({
dir,
min,
max,
autoComplete,
},
},
});
@ -122,6 +124,7 @@ const getMaterialWhitePaddedThemeInputProps = ({
startAdornment,
min,
max,
autoComplete,
}) => ({
InputProps: {
startAdornment,
@ -135,6 +138,7 @@ const getMaterialWhitePaddedThemeInputProps = ({
dir,
min,
max,
autoComplete,
},
},
});
@ -155,6 +159,7 @@ const getBorderedThemeInputProps = ({
startAdornment,
min,
max,
autoComplete,
}) => ({
InputLabelProps: {
shrink: true,
@ -177,6 +182,7 @@ const getBorderedThemeInputProps = ({
dir,
min,
max,
autoComplete,
},
},
});
@ -196,6 +202,7 @@ const TextField = ({
dir,
min,
max,
autoComplete,
...textFieldProps
}) => {
const inputProps = themeToInputProps[theme]({
@ -205,6 +212,7 @@ const TextField = ({
dir,
min,
max,
autoComplete,
});
return (
@ -232,6 +240,7 @@ TextField.propTypes = {
largeLabel: PropTypes.bool,
min: PropTypes.number,
max: PropTypes.number,
autoComplete: PropTypes.string,
};
export default withStyles(styles)(TextField);

View File

@ -72,6 +72,7 @@ export default class TokenSearch extends Component {
error={error}
fullWidth
autoFocus
autoComplete="off"
startAdornment={this.renderAdornment()}
/>
);