container insertion issues

This commit is contained in:
2020-06-07 23:27:31 +02:00
parent ed0df26a79
commit 21ccd165c2
4 changed files with 23 additions and 23 deletions

View File

@@ -84,7 +84,10 @@ class Player extends React.Component {
</button>
{this.state.popupvisible ?
<AddTagPopup show={this.state.popupvisible}
onHide={() => this.setState({popupvisible: false})}
onHide={() => {
this.setState({popupvisible: false});
this.fetchMovieData();
}}
movie_id={this.state.movie_id}/> :
null
}