Browse Source

fixes #3191

bubble
Anna Bodnia 7 years ago
parent
commit
ee2e82390b
3 changed files with 5 additions and 5 deletions
  1. +2
    -2
      dist/swagger-ui-bundle.js
  2. +2
    -2
      dist/swagger-ui.js
  3. +1
    -1
      src/core/components/auth/oauth2.jsx

+ 2
- 2
dist/swagger-ui-bundle.js
File diff suppressed because it is too large
View File


+ 2
- 2
dist/swagger-ui.js
File diff suppressed because it is too large
View File


+ 1
- 1
src/core/components/auth/oauth2.jsx View File

@@ -27,7 +27,7 @@ export default class Oauth2 extends React.Component {
let username = auth && auth.get("username") || ""
let clientId = auth && auth.get("clientId") || authConfigs.clientId || ""
let clientSecret = auth && auth.get("clientSecret") || authConfigs.clientSecret || ""
let passwordType = auth && auth.get("passwordType") || "basic"
let passwordType = auth && auth.get("passwordType") || "request-body"

this.state = {
appName: authConfigs.appName,


Loading…
Cancel
Save