Remove referrers from links

This commit is contained in:
schroda
2024-05-04 23:54:33 +02:00
parent b892c93d7a
commit 3a7c93ea06
6 changed files with 20 additions and 10 deletions

View File

@@ -65,7 +65,7 @@ export const VersionUpdateInfoDialog = ({
<DialogActions>
<Stack sx={{ width: '100%' }} direction="row" justifyContent={changelogUrl ? 'space-between' : 'end'}>
{changelogUrl && (
<Button href={changelogUrl} target="_blank">
<Button href={changelogUrl} target="_blank" rel="noreferrer">
{t('global.button.changelog')}
</Button>
)}
@@ -98,7 +98,13 @@ export const VersionUpdateInfoDialog = ({
)}
</PopupState>
{actionUrl ? (
<Button disabled={disabled} variant="contained" href={actionUrl} target="_blank">
<Button
disabled={disabled}
variant="contained"
href={actionUrl}
target="_blank"
rel="noreferrer"
>
{actionTitle}
</Button>
) : (

View File

@@ -156,7 +156,7 @@ export const WebUIUpdateChecker = () => {
</DialogContentText>
</DialogContent>
<DialogActions>
<Button href={changelogUrl} target="_blank">
<Button href={changelogUrl} target="_blank" rel="noreferrer">
{t('global.button.changelog')}
</Button>
<Button