diff --git a/client/coral-embed-stream/src/components/Embed.js b/client/coral-embed-stream/src/components/Embed.js
index 145e8340a..98137624f 100644
--- a/client/coral-embed-stream/src/components/Embed.js
+++ b/client/coral-embed-stream/src/components/Embed.js
@@ -9,6 +9,7 @@ import Count from 'coral-plugin-comment-count/CommentCount';
import ProfileContainer from 'coral-settings/containers/ProfileContainer';
import ConfigureStreamContainer
from 'coral-configure/containers/ConfigureStreamContainer';
+import cn from 'classnames';
export default class Embed extends React.Component {
changeTab = (tab) => {
@@ -37,34 +38,36 @@ export default class Embed extends React.Component {
const {activeTab, viewAllComments, commentId} = this.props;
const {asset: {totalCommentCount}} = this.props.root;
const {user} = this.props.auth;
+ const hasHighlightedComment = !!commentId;
return (
-
-
-
-
- {t('framework.my_profile')}
- {t('framework.configure_stream')}
-
- {commentId &&
-
}
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+ {t('framework.my_profile')}
+
+ {t('framework.configure_stream')}
+
+
+ {commentId &&
+
}
+
+
+
+
+
+
+
+
+
+
);
}
diff --git a/client/coral-embed-stream/src/index.js b/client/coral-embed-stream/src/index.js
index f5be3922d..9020a8457 100644
--- a/client/coral-embed-stream/src/index.js
+++ b/client/coral-embed-stream/src/index.js
@@ -48,5 +48,5 @@ render(
- , document.querySelector('#coralStream')
+ , document.querySelector('#talk-embed-stream-container')
);
diff --git a/client/coral-plugin-flags/components/FlagButton.js b/client/coral-plugin-flags/components/FlagButton.js
index 25fcf21a9..33499e83d 100644
--- a/client/coral-plugin-flags/components/FlagButton.js
+++ b/client/coral-plugin-flags/components/FlagButton.js
@@ -148,7 +148,7 @@ export default class FlagButton extends Component {