ui: proper casing for empty states in anime details

This commit is contained in:
2026-04-08 15:54:28 +02:00
parent d3eba7ed9d
commit c9d34fd567

View File

@@ -304,7 +304,7 @@ templ AnimeRelationsList(relations []jikan.RelationEntry) {
} }
</div> </div>
} else { } else {
<p style="color: var(--text-muted); font-size: var(--text-sm);">no related anime found.</p> <p style="color: var(--text-muted); font-size: var(--text-sm);">No related anime found.</p>
} }
} }
@@ -323,6 +323,6 @@ templ AnimeRecommendations(recs []jikan.Anime) {
} }
</div> </div>
} else { } else {
<p style="color: var(--text-muted); font-size: var(--text-sm);">no recommendations available.</p> <p style="color: var(--text-muted); font-size: var(--text-sm);">No recommendations available.</p>
} }
} }