diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7184eed4..1e420887 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,6 +6,7 @@ These changes are awaiting release:
- HTTP Requests: Replace `axios` with `Fetch`.
- Show `Airs On` date for episodes that have yet to air (thanks [@KarpachMarko]!).
+- Show `Aired Date` for episodes.
## Fixed
diff --git a/src/lib/season/SeasonsListEpisode.svelte b/src/lib/season/SeasonsListEpisode.svelte
index da4c972c..7a7ad722 100644
--- a/src/lib/season/SeasonsListEpisode.svelte
+++ b/src/lib/season/SeasonsListEpisode.svelte
@@ -130,6 +130,12 @@
>{ep.runtime} min
{/if}
+ {#if !isUnaired && airDate}
+
+
+ {toRelativeDate(airDate)}
+
+ {/if}
{#if ep.vote_count <= 0 && isUnaired}
Airs on {toRelativeDate(airDate)}