We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5f68f14 + 6235b59 commit d79b7d2Copy full SHA for d79b7d2
src/components/API/API.jsx
@@ -16,9 +16,13 @@ class Function extends React.Component {
16
if (!since) throw new Error(message);
17
}
18
19
+ // All of this should later be automated. For now, bite the bullet and do it manually...
20
+ const releaseLink = `https://github.com/evo-lua/evo-runtime/releases/tag/${since}`;
21
const sinceBlock = (since && (
22
<>
- <span className={styles.sinceBlock}>Available since: {since}</span>
23
+ <span className={styles.sinceBlock}>
24
+ Available since: <a href={releaseLink}>{since}</a>
25
+ </span>
26
</>
27
)) || (
28
0 commit comments