diff --git a/src/core/components/auth/auth-item.jsx b/src/core/components/auth/auth-item.jsx index bdff2c39..cffc8147 100644 --- a/src/core/components/auth/auth-item.jsx +++ b/src/core/components/auth/auth-item.jsx @@ -4,7 +4,10 @@ import ImPropTypes from "react-immutable-proptypes" export default class Auths extends React.Component { static propTypes = { - + schema: ImPropTypes.orderedMap.isRequired, + name: PropTypes.string.isRequired, + onAuthChange: PropTypes.func.isRequired, + authorized: ImPropTypes.orderedMap.isRequired } render() { diff --git a/src/core/components/auth/oauth2.jsx b/src/core/components/auth/oauth2.jsx index 27024733..e6dbe6a5 100644 --- a/src/core/components/auth/oauth2.jsx +++ b/src/core/components/auth/oauth2.jsx @@ -11,6 +11,7 @@ export default class Oauth2 extends React.Component { authSelectors: PropTypes.object.isRequired, authActions: PropTypes.object.isRequired, errSelectors: PropTypes.object.isRequired, + specSelectors: PropTypes.object.isRequired, errActions: PropTypes.object.isRequired, getConfigs: PropTypes.any }