Skip to content
Snippets Groups Projects
Unverified Commit 13e69aa2 authored by chrisgarrity's avatar chrisgarrity Committed by GitHub
Browse files

Merge pull request #2908 from chrisgarrity/fix-lint

Add missing propTypes
parents be93dca2 019edd8e
No related branches found
No related tags found
No related merge requests found
......@@ -156,6 +156,7 @@ ImportModal.propTypes = {
hasValidationError: PropTypes.bool.isRequired,
inputValue: PropTypes.string.isRequired,
intl: intlShape.isRequired,
isRtl: PropTypes.bool,
onCancel: PropTypes.func.isRequired,
onChange: PropTypes.func.isRequired,
onGoBack: PropTypes.func.isRequired,
......
......@@ -94,6 +94,7 @@ class GUI extends React.Component {
}
GUI.propTypes = {
assetHost: PropTypes.string,
children: PropTypes.node,
fetchingProject: PropTypes.bool,
importInfoVisible: PropTypes.bool,
......@@ -101,6 +102,7 @@ GUI.propTypes = {
onSeeCommunity: PropTypes.func,
previewInfoVisible: PropTypes.bool,
projectData: PropTypes.oneOfType([PropTypes.object, PropTypes.string]),
projectHost: PropTypes.string,
vm: PropTypes.instanceOf(VM)
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment