From 858bb79d3a20b4bec475e7ebd9017a0da283eb32 Mon Sep 17 00:00:00 2001 From: Alex Windett Date: Tue, 24 Jan 2017 10:12:53 +0000 Subject: [PATCH] correcting propTypes --- frontend/src/components/people-list/person-status.js | 2 +- frontend/src/components/people-list/table.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/people-list/person-status.js b/frontend/src/components/people-list/person-status.js index 3a93b9a6..ebb8cb0b 100644 --- a/frontend/src/components/people-list/person-status.js +++ b/frontend/src/components/people-list/person-status.js @@ -57,7 +57,7 @@ const PersonStatus = (props) => { }; PersonStatus.propTypes = { - handleStatusTooltip: React.PropTypes.bool, + handleStatusTooltip: React.PropTypes.func, person: React.PropTypes.object, toggled: React.PropTypes.bool, }; diff --git a/frontend/src/components/people-list/table.js b/frontend/src/components/people-list/table.js index 0af1d367..2c9140f5 100644 --- a/frontend/src/components/people-list/table.js +++ b/frontend/src/components/people-list/table.js @@ -58,7 +58,7 @@ const PeopleTable = (props) => { }; PeopleTable.propTypes = { - handleStatusTooltip: React.PropTypes.bool, + handleStatusTooltip: React.PropTypes.func, orgUI: React.PropTypes.object, people: React.PropTypes.array, };