diff --git a/client/coral-embed-stream/src/Embed.js b/client/coral-embed-stream/src/Embed.js index 03631fe4f..ba22f20de 100644 --- a/client/coral-embed-stream/src/Embed.js +++ b/client/coral-embed-stream/src/Embed.js @@ -29,6 +29,12 @@ class Embed extends Component { state = {activeTab: 0, showSignInDialog: false}; changeTab = (tab) => { + + // Everytime the comes from another tab, the Stream needs to be updated. + if (tab === 0) { + this.props.data.refetch() + } + this.setState({ activeTab: tab });