From ddd098bcf7a4ec5d8cc4c838c6d6b9659426a0ea Mon Sep 17 00:00:00 2001 From: Mihail Hagiu <mihail.hagiu@thinslices.com> Date: Tue, 18 Dec 2018 15:17:46 +0200 Subject: [PATCH] fix(YourEditorialDecision): Expanded prop explictedly passed to ContextualBox --- .../src/contextualBoxes/HERecommendation.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/component-faraday-ui/src/contextualBoxes/HERecommendation.js b/packages/component-faraday-ui/src/contextualBoxes/HERecommendation.js index 57dff3b2e..6347335db 100644 --- a/packages/component-faraday-ui/src/contextualBoxes/HERecommendation.js +++ b/packages/component-faraday-ui/src/contextualBoxes/HERecommendation.js @@ -79,6 +79,7 @@ const HERecommendation = ({ handleSubmit, formValues, highlight, + expanded, toggle, rejectRecommendation, publishRecommendation, @@ -87,7 +88,7 @@ const HERecommendation = ({ ...rest }) => ( <ContextualBox - expanded + expanded={expanded} highlight={highlight} label="Your Editorial Recommendation" mb={2} -- GitLab