mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +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">
|
<TableCell align="right" component="th" scope="row">
|
||||||
{translate('menu.version')}:
|
{translate('menu.version')}:
|
||||||
</TableCell>
|
</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>
|
</TableRow>
|
||||||
{Object.keys(links).map((key) => {
|
{Object.keys(links).map((key) => {
|
||||||
return (
|
return (
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue