Skip to content

Commit

Permalink
Merge pull request #352 from serega3000/master
Browse files Browse the repository at this point in the history
fix macos download page
  • Loading branch information
ArekSredzki authored Oct 28, 2023
2 parents a477028 + 4884423 commit 042567b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions assets/js/download/download.pug
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
ng-change='vm.getLatestReleases()'
)
.row.text-center.padding-top-20(ng-if="vm.latestReleases")
.col-md-12(ng-if="vm.platform === 'osx' && !vm.archs.includes('arm64')")
.col-md-12(ng-if="vm.platform === 'osx' && vm.latestReleases['64']")
.jumbotron
h4 OS X
span.text-muted 64 bit INTEL
Expand All @@ -36,7 +36,7 @@
p.release-notes.text-muted(
ng-bind="vm.latestReleases['64'].notes"
)
.col-md-12(ng-if="vm.platform === 'osx' && vm.archs.includes('arm64')")
.col-md-12(ng-if="vm.platform === 'osx' && vm.latestReleases['arm64']")
.jumbotron
h4 OS X
span.text-muted 64 bit ARM
Expand Down

0 comments on commit 042567b

Please sign in to comment.