diff --git a/client/coral-embed-stream/src/Comment.js b/client/coral-embed-stream/src/Comment.js
index 45f2ef084..7928320e2 100644
--- a/client/coral-embed-stream/src/Comment.js
+++ b/client/coral-embed-stream/src/Comment.js
@@ -158,7 +158,7 @@ class Comment extends React.Component {
?
: null }
-
+
diff --git a/client/coral-framework/components/Slot.js b/client/coral-framework/components/Slot.js
index 3d1d61328..c1e5dfe65 100644
--- a/client/coral-framework/components/Slot.js
+++ b/client/coral-framework/components/Slot.js
@@ -1,11 +1,12 @@
import React, {Component} from 'react';
import {getSlotElements} from 'coral-framework/helpers/plugins';
+import styles from './Slot.css';
class Slot extends Component {
render() {
- const {fill, ...rest} = this.props;
+ const {fill, inline = false, ...rest} = this.props;
return (
-
+
{getSlotElements(fill, rest)}
);
diff --git a/client/coral-plugin-commentbox/CommentBox.js b/client/coral-plugin-commentbox/CommentBox.js
index 19472ef70..3b2aa887d 100644
--- a/client/coral-plugin-commentbox/CommentBox.js
+++ b/client/coral-plugin-commentbox/CommentBox.js
@@ -2,6 +2,8 @@ import React, {Component, PropTypes} from 'react';
import {I18n} from '../coral-framework';
import translations from './translations.json';
import {Button} from 'coral-ui';
+import {Slot} from 'coral-framework';
+import styles from './styles.css';
const name = 'coral-plugin-commentbox';
@@ -102,6 +104,7 @@ class CommentBox extends Component {
`${charCount - length} ${lang.t('characters-remaining')}`
}
+
{
isReply && (
diff --git a/plugins/coral-plugin-respect/client/index.js b/plugins/coral-plugin-respect/client/index.js
index 2caa6611b..a336786d6 100644
--- a/plugins/coral-plugin-respect/client/index.js
+++ b/plugins/coral-plugin-respect/client/index.js
@@ -1,4 +1,5 @@
import RespectButton from './containers/RespectButton';
+
export default {
slots: {
commentDetail: [RespectButton],