@@ -43,7 +43,7 @@
export default {
mixins: [MiscHelper, ItemHelper],
- props: ['item', 'genre', 'date'],
+ props: ['item', 'genre', 'date', 'ratings'],
data() {
return {
diff --git a/client/app/components/Content/Settings/Options.vue b/client/app/components/Content/Settings/Options.vue
index 5d7179c..b2338c0 100644
--- a/client/app/components/Content/Settings/Options.vue
+++ b/client/app/components/Content/Settings/Options.vue
@@ -13,6 +13,14 @@
+
+
+
+
@@ -35,7 +43,8 @@
genre: null,
date: null,
spoiler: null,
- watchlist: null
+ watchlist: null,
+ ratings: null,
}
},
@@ -58,6 +67,7 @@
this.date = data.date;
this.spoiler = data.spoiler;
this.watchlist = data.watchlist;
+ this.ratings = data.ratings;
});
},
@@ -68,8 +78,9 @@
const genre = this.genre;
const spoiler = this.spoiler;
const watchlist = this.watchlist;
+ const ratings = this.ratings;
- http.patch(`${config.api}/settings`, {date, genre, spoiler, watchlist}).then(response => {
+ http.patch(`${config.api}/settings`, {date, genre, spoiler, watchlist, ratings}).then(response => {
this.SET_LOADING(false);
}, error => {
alert(error.message);
@@ -78,4 +89,4 @@
}
}
-
\ No newline at end of file
+
diff --git a/client/app/components/Content/Subpage.vue b/client/app/components/Content/Subpage.vue
index db031e2..30a0459 100644
--- a/client/app/components/Content/Subpage.vue
+++ b/client/app/components/Content/Subpage.vue
@@ -4,12 +4,12 @@
-
+
-
+
@@ -48,7 +48,7 @@