mirror of
https://github.com/meshtastic/meshtastic.git
synced 2025-01-12 14:27:45 -08:00
Use page_url instead of zip_url now that we're splitting by architecture
This commit is contained in:
parent
431400284a
commit
1e3a931699
|
@ -29,7 +29,7 @@ export const FirmwareCard = ({
|
|||
{release.slice(1, 6).map((release) => {
|
||||
return (
|
||||
<div key={release.id}>
|
||||
<a href={release.zip_url}>{release.title}</a>
|
||||
<a href={release.page_url}>{release.title}</a>
|
||||
</div>
|
||||
);
|
||||
})}
|
||||
|
@ -38,7 +38,7 @@ export const FirmwareCard = ({
|
|||
{release?.length ? (
|
||||
<>
|
||||
<a
|
||||
href={release[0].zip_url}
|
||||
href={release[0].page_url}
|
||||
className="button button--secondary button--block margin-top--sm"
|
||||
>
|
||||
Download {variant}
|
||||
|
|
Loading…
Reference in a new issue