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

feature/default_network_editable
David Walsh 4 years ago committed by GitHub
parent 0fdc8a42ce
commit c14919c60f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      ui/app/components/ui/text-field/text-field.component.js
  2. 1
      ui/app/pages/add-token/token-search/token-search.component.js

@ -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);

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

Loading…
Cancel
Save