Fix small issue in Activity empty display

This commit is contained in:
Josh McDonald 2016-07-12 08:38:49 +10:00
parent 73cb00000b
commit e271925b3c
1 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ import {
connect,
} from '../redux';
const { object, array, func, string, boolean } = PropTypes;
const { object, array, func, string, bool } = PropTypes;
const EmptyState = ({ repoName, pipeline, showRunButton }) => (
<main>
@ -35,7 +35,7 @@ const EmptyState = ({ repoName, pipeline, showRunButton }) => (
EmptyState.propTypes = {
repoName: string,
pipeline: object,
showRunButton: boolean,
showRunButton: bool,
};
const RunNonMultiBranchPipeline = ({ pipeline, buttonText }) => (