mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2026-03-14 11:33:51 +00:00
Moved shlink versions to the outer element so that's always visible
This commit is contained in:
@@ -14,12 +14,7 @@ export interface ShlinkVersionsProps {
|
||||
className?: string;
|
||||
}
|
||||
|
||||
interface VersionLinkProps {
|
||||
project: 'shlink' | 'shlink-web-client';
|
||||
version: string;
|
||||
}
|
||||
|
||||
const VersionLink = ({ project, version }: VersionLinkProps) => (
|
||||
const VersionLink = ({ project, version }: { project: 'shlink' | 'shlink-web-client'; version: string }) => (
|
||||
<ExternalLink href={`https://github.com/shlinkio/${project}/releases/${version}`} className="text-muted">
|
||||
<b>{version}</b>
|
||||
</ExternalLink>
|
||||
|
||||
Reference in New Issue
Block a user