diff --git a/content/games/umineko/umineko.mdoc b/content/games/umineko/umineko.mdoc index c90ebf5a..4b27c2f0 100644 --- a/content/games/umineko/umineko.mdoc +++ b/content/games/umineko/umineko.mdoc @@ -1,7 +1,9 @@ --- title: "Umineko When They Cry" finishedDate: 2019-05-22 -rating: "masterpiece" +rating: "loved" platform: "pc" igdb: "65754" --- + +I love this game a lot, but it is very long and a bit of a drag at times. But it's still really good! diff --git a/content/movies/past-lives/past-lives.mdoc b/content/movies/past-lives/past-lives.mdoc index f09855b7..6004e159 100644 --- a/content/movies/past-lives/past-lives.mdoc +++ b/content/movies/past-lives/past-lives.mdoc @@ -1,8 +1,6 @@ --- title: "Past Lives" -rating: "liked" +rating: "loved" finishedDate: 2024-08-16 tmdb: "666277" --- - - diff --git a/content/movies/pussinbootsthelastwish/pussinbootsthelastwish.mdoc b/content/movies/pussinbootsthelastwish/pussinbootsthelastwish.mdoc index d8c5aa80..6d16ec8c 100644 --- a/content/movies/pussinbootsthelastwish/pussinbootsthelastwish.mdoc +++ b/content/movies/pussinbootsthelastwish/pussinbootsthelastwish.mdoc @@ -1,6 +1,6 @@ --- title: "Puss in Boots: The Last Wish" -rating: "masterpiece" +rating: "loved" finishedDate: 2023-01-02 tmdb: "315162" --- diff --git a/content/movies/the-greatest-showman/the-greatest-showman.mdoc b/content/movies/the-greatest-showman/the-greatest-showman.mdoc index ccdfeabf..02ff86b9 100644 --- a/content/movies/the-greatest-showman/the-greatest-showman.mdoc +++ b/content/movies/the-greatest-showman/the-greatest-showman.mdoc @@ -1,6 +1,6 @@ --- title: "The Greatest Showman" -rating: "okay" +rating: "disliked" finishedDate: 2024-07-22 tmdb: "316029" --- diff --git a/content/shows/mr-mrs-smith/mr-mrs-smith.mdoc b/content/shows/mr-mrs-smith/mr-mrs-smith.mdoc index e77e7275..aef44185 100644 --- a/content/shows/mr-mrs-smith/mr-mrs-smith.mdoc +++ b/content/shows/mr-mrs-smith/mr-mrs-smith.mdoc @@ -1,6 +1,6 @@ --- title: "Mr. & Mrs. Smith" -rating: "loved" +rating: "liked" finishedDate: 2024-07-15 tmdb: "118642" --- diff --git a/src/components/catalogue/Core.astro b/src/components/catalogue/Core.astro index 460b9123..01c86494 100644 --- a/src/components/catalogue/Core.astro +++ b/src/components/catalogue/Core.astro @@ -89,7 +89,7 @@ const pageLenth = 30; } function updateSeeMoreButton() { - seeMoreButton.disabled = _currentPage === serverStatus.totalPages; + seeMoreButton.style.display = _currentPage === serverStatus.totalPages ? "none" : "block"; } let searchDebounce: ReturnType;