From 7c917325f037c142accde70506fa66ce5d35791e Mon Sep 17 00:00:00 2001 From: Kyle Shockey Date: Fri, 20 Oct 2017 19:31:52 -0700 Subject: [PATCH] Linter fixes --- src/core/components/auth/auth-item.jsx | 5 ++++- src/core/components/auth/oauth2.jsx | 1 + 2 files changed, 5 insertions(+), 1 deletion(-) 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 }