mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Make the version number in the about dialog clickable (#817)
* Make the version number in the about dialog clickable * Fix prettier errors * Fix build errors
This commit is contained in:
parent
43f2d82956
commit
5a259ef3ff
1 changed files with 16 additions and 1 deletions
|
@ -45,7 +45,22 @@ const AboutDialog = ({ open, onClose }) => {
|
|||
<TableCell align="right" component="th" scope="row">
|
||||
{translate('menu.version')}:
|
||||
</TableCell>
|
||||
<TableCell align="left">{config.version}</TableCell>
|
||||
{config.version === 'dev' ? (
|
||||
<TableCell align="left"> {config.version} </TableCell>
|
||||
) : (
|
||||
<TableCell align="left">
|
||||
<Link
|
||||
href={`https://github.com/navidrome/navidrome/releases/tag/v${
|
||||
config.version.split(' ')[0]
|
||||
}`}
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
{config.version.split(' ')[0]}
|
||||
</Link>
|
||||
{' ' + config.version.split(' ')[1]}
|
||||
</TableCell>
|
||||
)}
|
||||
</TableRow>
|
||||
{Object.keys(links).map((key) => {
|
||||
return (
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue