Skip to content

Commit

Permalink
Added autocomple support for Deploy Form | kubeflow#2952 (kubeflow#3090)
Browse files Browse the repository at this point in the history
  • Loading branch information
avdaredevil authored and swiftdiaries committed May 2, 2019
1 parent 00885c8 commit 671c09f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/gcp-click-to-deploy/src/DeployForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -210,11 +210,11 @@ export default class DeployForm extends React.Component<any, DeployFormState> {
then enter as IAP Oauth Client ID and Secret</li>
</div>
<div style={styles.row}>
<TextField label="IAP OAuth client ID" spellCheck={false} style={styles.input} variant="filled"
<TextField label="IAP OAuth client ID" autoComplete="username" spellCheck={false} style={styles.input} variant="filled"
required={true} value={this.state.clientId} onChange={this._handleChange('clientId')} />
</div>
<div style={styles.row}>
<TextField label="IAP OAuth client secret" spellCheck={false} style={styles.input} variant="filled"
<TextField label="IAP OAuth client secret" autoComplete="current-password" spellCheck={false} style={styles.input} variant="filled"
required={true} value={this.state.clientSecret} onChange={this._handleChange('clientSecret')} />
</div>
</Collapse>
Expand Down

0 comments on commit 671c09f

Please sign in to comment.