Skip to content

Commit

Permalink
feat: add a link to the verify the checksum article on the download page
Browse files Browse the repository at this point in the history
  • Loading branch information
WhiteMinds committed Nov 3, 2023
1 parent 0af5959 commit de18951
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
4 changes: 4 additions & 0 deletions packages/neuron/src/pages/download/Assets/index.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -113,3 +113,7 @@
}
}
}

.checksumLink {
color: #00c891;
}
17 changes: 16 additions & 1 deletion packages/neuron/src/pages/download/Assets/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,22 @@ export const Assets$Desktop: FC<AssetsProps> = ({ assets, ...tableProps }) => {
<th>
<div className={styles.checksum}>
Checksum
<Tooltip content="After the download is complete, you can check the Checksum to ensure that the installation package has not been tampered with during the download process.">
<Tooltip
content={
<>
After the download is complete, you can{' '}
<LinkWithEffect
className={styles.checksumLink}
href="/posts/issues/2827#how_to_verify_with_checksum_%3F"
target="_blank"
rel="noopener noreferrer"
>
check the Checksum
</LinkWithEffect>{' '}
to ensure that the installation package has not been tampered with during the download process.
</>
}
>
<IconTips />
</Tooltip>
</div>
Expand Down

1 comment on commit de18951

@vercel
Copy link

@vercel vercel bot commented on de18951 Nov 3, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.