Skip to content

Commit

Permalink
feat: add tag link on app version
Browse files Browse the repository at this point in the history
  • Loading branch information
Stéphane committed Jul 13, 2023
1 parent 1a38d32 commit c73d58b
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/components/AppVersion.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,13 @@ export const AppVersion: React.FC<AppVersionProps> = memo(
const { t } = useTranslation();

return (
<Text align={align} title={t("app.version")}>
<Text
component="a"
href={`https://github.com/stephane-r/holoplay-pwa/releases/tag/v${pkg.version}`}
target="_blank"
align={align}
title={t("app.version")}
>
<Space h={4} />
<Badge size="xs">{pkg.version}</Badge>
</Text>
Expand Down

0 comments on commit c73d58b

Please sign in to comment.