From 57d2b81b0580d667cdc35bc5cbd2face9ab346c1 Mon Sep 17 00:00:00 2001 From: Belen Curcio Date: Wed, 10 May 2017 16:05:52 -0300 Subject: [PATCH] missing _ --- client/coral-embed-stream/src/actions/embed.js | 2 +- client/coral-framework/components/Slot.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/coral-embed-stream/src/actions/embed.js b/client/coral-embed-stream/src/actions/embed.js index 509de7237..98505cb99 100644 --- a/client/coral-embed-stream/src/actions/embed.js +++ b/client/coral-embed-stream/src/actions/embed.js @@ -6,4 +6,4 @@ export const setActiveTab = (tab) => (dispatch, getState) => { if (getState().stream.commentId) { dispatch(viewAllComments()); } -}; \ No newline at end of file +}; diff --git a/client/coral-framework/components/Slot.js b/client/coral-framework/components/Slot.js index 3c9c17476..939068e83 100644 --- a/client/coral-framework/components/Slot.js +++ b/client/coral-framework/components/Slot.js @@ -7,7 +7,7 @@ import {getSlotElements} from 'coral-framework/helpers/plugins'; function Slot ({fill, inline = false, plugin_config: config, ...rest}) { return (
- {getSlotElements(fill, {...rest, config}} + {getSlotElements(fill, {...rest, config})}
); }