diff --git a/components/comment/form.vue b/components/comment/form.vue index f35c1df..7316890 100644 --- a/components/comment/form.vue +++ b/components/comment/form.vue @@ -16,7 +16,7 @@ const sendComment = () => { username: username.value, message: message.value, score: document.getElementById('score').value, - film: props.filmId, + filmId: props.filmId, added: Date.now(), }) } diff --git a/components/comment/list.vue b/components/comment/list.vue index 39b1458..4303cdf 100644 --- a/components/comment/list.vue +++ b/components/comment/list.vue @@ -1,6 +1,6 @@ diff --git a/components/list.vue b/components/list.vue index cb8f193..d88293a 100644 --- a/components/list.vue +++ b/components/list.vue @@ -11,23 +11,28 @@ {{ films.length }} - - - - - {{ film.title }} - {{ film.original_title }} - {{ film.vote_count }} - {{ film.release_date }} - {{ film.id }} - - +
+ + + +

+ {{ film.title }} +

+ + {{ useDateFormat(film.release_date, 'D MMM YYYY') }} + + {{ formatPercentage(film.vote_average) }}% +
+
+