diff --git a/web/src/components/changelog/ChangelogEntry.svelte b/web/src/components/changelog/ChangelogEntry.svelte index d23500fc..4fdc1129 100644 --- a/web/src/components/changelog/ChangelogEntry.svelte +++ b/web/src/components/changelog/ChangelogEntry.svelte @@ -27,9 +27,7 @@
{version}
- {#if date} -
{formatDate(date)}
- {/if} +
{formatDate(date)}

{title}

diff --git a/web/src/lib/types/changelogs.ts b/web/src/lib/types/changelogs.ts index ed3d85f9..d07740d6 100644 --- a/web/src/lib/types/changelogs.ts +++ b/web/src/lib/types/changelogs.ts @@ -2,7 +2,7 @@ import type { SvelteComponent } from "svelte" export interface ChangelogMetadata { title: string, - date: string + date: string, banner?: { file: string, alt: string