Release target is no longer given + fix changes on homescreen

This commit is contained in:
Misode
2022-10-19 21:19:38 +02:00
parent de047621c9
commit f9e79d614a
3 changed files with 5 additions and 4 deletions

View File

@@ -122,6 +122,6 @@ function Changelog() {
const latestChanges = useMemo(() => changes?.sort((a, b) => b.order - a.order).slice(0, 2), [changes])
return <ToolGroup title={locale('changelog')} link="/changelog/" titleIcon="git_commit">
{latestChanges?.map(change => <ChangelogEntry minimal={!hugeScreen} change={change} />)}
{latestChanges?.map(change => <ChangelogEntry minimal={!hugeScreen} short={true} change={change} />)}
</ToolGroup>
}