diff --git a/client/coral-configure/components/ConfigureCommentStream.js b/client/coral-configure/components/ConfigureCommentStream.js index 348d26f53..bef53e1ef 100644 --- a/client/coral-configure/components/ConfigureCommentStream.js +++ b/client/coral-configure/components/ConfigureCommentStream.js @@ -7,7 +7,7 @@ import I18n from 'coral-framework/modules/i18n/i18n'; import translations from '../translations.json'; const lang = new I18n(translations); -export default ({handleChange, handleApply, changed, updateQuestionBoxContent, ...props}) => ( +export default ({handleChange, handleApply, changed, ...props}) => (
@@ -38,9 +38,9 @@ export default ({handleChange, handleApply, changed, updateQuestionBoxContent, . -
@@ -96,11 +102,10 @@ class ConfigureStreamContainer extends Component { handleChange={this.handleChange} handleApply={this.handleApply} changed={this.state.changed} - premodLinks={settings.premodLinks} + premodLinksEnable={dirtySettings.premodLinksEnable} premod={premod} - updateQuestionBoxContent={this.updateQuestionBoxContent} - questionBoxEnable={settings.questionBoxEnable} - questionBoxContent={settings.questionBoxContent} + questionBoxEnable={dirtySettings.questionBoxEnable} + questionBoxContent={dirtySettings.questionBoxContent} />

{closedAt === 'open' ? 'Close' : 'Open'} Comment Stream

diff --git a/client/coral-framework/graphql/queries/streamQuery.graphql b/client/coral-framework/graphql/queries/streamQuery.graphql index 9f27ce235..c9a7690fc 100644 --- a/client/coral-framework/graphql/queries/streamQuery.graphql +++ b/client/coral-framework/graphql/queries/streamQuery.graphql @@ -28,6 +28,7 @@ query AssetQuery($asset_id: ID, $asset_url: String, $comment_id: ID!, $has_comme moderation infoBoxEnable infoBoxContent + premodLinksEnable questionBoxEnable questionBoxContent closeTimeout