From 6632a3e453eaac20524ddd87d7ae099f92eb75c2 Mon Sep 17 00:00:00 2001 From: Eduard Urbach Date: Tue, 7 Nov 2017 17:50:03 +0100 Subject: [PATCH] Improved explore --- pages/explore/explore.pixy | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pages/explore/explore.pixy b/pages/explore/explore.pixy index 975586b9..a19ba9cf 100644 --- a/pages/explore/explore.pixy +++ b/pages/explore/explore.pixy @@ -3,7 +3,10 @@ component ExploreAnime(animeList []*arn.Anime, year string, status string, typ s h1.page-title Explore - AnimeGrid(animeList) + if len(animeList) == 0 + p.no-data.mountable No anime found using the above filters. + else + AnimeGrid(animeList) component ExploreFilters(year string, status string, typ string) .explore-filters