diff --git a/src/css/CategoryPage.css b/src/css/CategoryPage.css
deleted file mode 100644
index fb7be4a..0000000
--- a/src/css/CategoryPage.css
+++ /dev/null
@@ -1,4 +0,0 @@
-#categorycontent{
- width: 70%;
- float: left;
-}
\ No newline at end of file
diff --git a/src/elements/AddTagPopup.js b/src/elements/AddTagPopup.js
index d7243e4..17abd06 100644
--- a/src/elements/AddTagPopup.js
+++ b/src/elements/AddTagPopup.js
@@ -4,7 +4,7 @@ import Dropdown from "react-bootstrap/Dropdown";
import DropdownButton from "react-bootstrap/DropdownButton";
class AddTagPopup extends React.Component {
- constructor(props: P, context: any) {
+ constructor(props, context) {
super(props, context);
this.state = {
@@ -60,7 +60,6 @@ class AddTagPopup extends React.Component {
@@ -82,8 +81,9 @@ class AddTagPopup extends React.Component {
console.log("error occured while writing to db -- todo error handling");
console.log(result.result);
}
+ this.props.onHide();
});
}
}
-export default AddTagPopup;
\ No newline at end of file
+export default AddTagPopup;
diff --git a/src/pages/CategoryPage.js b/src/pages/CategoryPage.js
index dead782..eb6d742 100644
--- a/src/pages/CategoryPage.js
+++ b/src/pages/CategoryPage.js
@@ -2,7 +2,6 @@ import React from "react";
import SideBar from "../elements/SideBar";
import Tag from "../elements/Tag";
-import "../css/CategoryPage.css"
import {TagPreview} from "../elements/Preview";
class CategoryPage extends React.Component {
@@ -39,21 +38,23 @@ class CategoryPage extends React.Component {
-
- {!this.state.selected ?
- (this.state.loadedtags ?
- this.state.loadedtags.map((m) => (
-
- )) :
- "loading") :
- this.selectionelements
- }
-
+ {!this.state.selected ?
+ (
+ {this.state.loadedtags ?
+ this.state.loadedtags.map((m) => (
+
+ )) :
+ "loading"}
+
) :
+ this.selectionelements
+ }
+
+
>
);
}
diff --git a/src/pages/Player.js b/src/pages/Player.js
index 4b9138d..294e674 100644
--- a/src/pages/Player.js
+++ b/src/pages/Player.js
@@ -84,7 +84,10 @@ class Player extends React.Component {
{this.state.popupvisible ?
this.setState({popupvisible: false})}
+ onHide={() => {
+ this.setState({popupvisible: false});
+ this.fetchMovieData();
+ }}
movie_id={this.state.movie_id}/> :
null
}