diff --git a/src/app/changelog.service.ts b/src/app/changelog.service.ts index 2051e6f..e26015e 100644 --- a/src/app/changelog.service.ts +++ b/src/app/changelog.service.ts @@ -79,6 +79,6 @@ export class ChangelogService { locale: string ): IChangelogEntry[] | undefined { const changelog = this.changelogByProductIdAndLocale(); - return changelog?.[productId]?.[locale]; + return changelog?.[productId]?.[locale].reverse(); } }