From e271925b3cff04c9ecf0a80f89270609900c35c3 Mon Sep 17 00:00:00 2001 From: Josh McDonald Date: Tue, 12 Jul 2016 08:38:49 +1000 Subject: [PATCH] Fix small issue in Activity empty display --- blueocean-dashboard/src/main/js/components/Activity.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/blueocean-dashboard/src/main/js/components/Activity.jsx b/blueocean-dashboard/src/main/js/components/Activity.jsx index f69eacd7..4c67251e 100644 --- a/blueocean-dashboard/src/main/js/components/Activity.jsx +++ b/blueocean-dashboard/src/main/js/components/Activity.jsx @@ -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 }) => (
@@ -35,7 +35,7 @@ const EmptyState = ({ repoName, pipeline, showRunButton }) => ( EmptyState.propTypes = { repoName: string, pipeline: object, - showRunButton: boolean, + showRunButton: bool, }; const RunNonMultiBranchPipeline = ({ pipeline, buttonText }) => (