Skip to content

Commit

Permalink
Fix for #1411 [skip-ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
Remi749 committed Jan 25, 2024
1 parent 335f48a commit 0d336d4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export const LatestGitHubRelease: FC<ILatestGitHubReleaseProps> = (props) => {
className={styles.button}
size='medium'
appearance='primary'
onClick={() => window.open(latestGitHubRelease.assets[0].browser_download_url, '_blank')}
onClick={() => window.open('https://github.com/Puzzlepart/prosjektportalen365/releases', '_blank')}
icon={getFluentIcon('ArrowDownload')}
>
<span className={styles.label}>{strings.LatestGitHubReleaseDownloadButtonText}</span>
Expand All @@ -57,6 +57,6 @@ LatestGitHubRelease.defaultProps = {
latestGitHubReleaseIsNewerIconColor: 'green',
latestGitHubReleaseIsOlderIconName: 'ChevronDown',
latestGitHubReleaseIsOlderIconColor: 'red',
latestGitHubReleaseIsSameIconName: 'ChevronRight',
latestGitHubReleaseIsSameIconName: 'ChevronLeft',
latestGitHubReleaseIsSameIconColor: 'black'
}

0 comments on commit 0d336d4

Please sign in to comment.