missing _

This commit is contained in:
Belen Curcio
2017-05-10 16:05:52 -03:00
parent a75070cf2e
commit 57d2b81b05
2 changed files with 2 additions and 2 deletions
@@ -6,4 +6,4 @@ export const setActiveTab = (tab) => (dispatch, getState) => {
if (getState().stream.commentId) {
dispatch(viewAllComments());
}
};
};
+1 -1
View File
@@ -7,7 +7,7 @@ import {getSlotElements} from 'coral-framework/helpers/plugins';
function Slot ({fill, inline = false, plugin_config: config, ...rest}) {
return (
<div className={cn({[styles.inline]: inline, [styles.debug]: config.debug})}>
{getSlotElements(fill, {...rest, config}}
{getSlotElements(fill, {...rest, config})}
</div>
);
}