Skip to content

Commit

Permalink
DownloadButton: Fix stable AppImage not showing (#256)
Browse files Browse the repository at this point in the history
Linux didn't show what type it was (debian, snap, AppImage) when it is an AppImage for now. In future nightly will change 1.6 into a stable release.
  • Loading branch information
RedDevilus authored Sep 14, 2023
1 parent 9cf0120 commit dcb2ca9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/ReleaseDownloadButton/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ export function ReleaseDownloadButton({
release.linux,
"linux",
release.linux?.assets?.Linux,
["Linux", "AppImage"],
["Linux"],
isNightly
)
);
Expand All @@ -139,7 +139,7 @@ export function ReleaseDownloadButton({
release,
"linux",
release.assets?.Linux,
["Linux", "AppImage"],
["Linux"],
isNightly
)
);
Expand Down

0 comments on commit dcb2ca9

Please sign in to comment.