mirror of
https://github.com/zen-browser/www.git
synced 2025-07-07 17:05:32 +02:00
fix(download): fix x64 for windows download
This commit is contained in:
parent
0a0777ca33
commit
4254a2386f
2 changed files with 19 additions and 10 deletions
|
@ -85,12 +85,22 @@ import DownloadCard from './ButtonCard.astro'
|
|||
checksum={releases.universal.checksum}
|
||||
/>
|
||||
)}
|
||||
{releases.x86_64 && 'tarball' in releases.x86_64 && releases.x86_64.tarball && releases.x86_64.tarball.label && (
|
||||
<DownloadCard
|
||||
label={releases.x86_64.tarball.label}
|
||||
href={releases.x86_64.tarball.link}
|
||||
checksum={releases.x86_64.tarball.checksum}
|
||||
/>
|
||||
{releases.x86_64 && (
|
||||
'tarball' in releases.x86_64
|
||||
? releases.x86_64.tarball.label && (
|
||||
<DownloadCard
|
||||
label={releases.x86_64.tarball.label}
|
||||
href={releases.x86_64.tarball.link}
|
||||
checksum={releases.x86_64.tarball.checksum}
|
||||
/>
|
||||
)
|
||||
: releases.x86_64.label && (
|
||||
<DownloadCard
|
||||
label={releases.x86_64.label}
|
||||
href={releases.x86_64.link}
|
||||
checksum={releases.x86_64.checksum}
|
||||
/>
|
||||
)
|
||||
)}
|
||||
{releases.arm64 && releases.arm64.label && (
|
||||
<DownloadCard
|
||||
|
|
|
@ -151,11 +151,10 @@
|
|||
"title": "Main Team",
|
||||
"description": "This list shows the main team members who are working hard to bring you the best browsing experience.",
|
||||
"subTitle": {
|
||||
"browser": "Browser",
|
||||
"website": "Website and Branding"
|
||||
},
|
||||
"browser": "Browser",
|
||||
"website": "Website and Branding"
|
||||
},
|
||||
"members": {
|
||||
|
||||
"browser": {
|
||||
"mauro": {
|
||||
"name": "Mauro B.",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue