Link to release notes on downloads page (#9546)

* Link to release notes on downloads page

* Per Jeff E's comment linking to index
This commit is contained in:
Meggie 2020-07-21 18:11:32 -04:00 committed by GitHub
parent b11b8b5cbc
commit 692200c47b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,6 +2,7 @@ import fetch from 'isomorphic-unfetch'
import { VERSION, CHANGELOG_URL } from '../../data/version.js'
import ProductDownloader from '@hashicorp/react-product-downloader'
import Head from 'next/head'
import Link from 'next/link'
import HashiHead from '@hashicorp/react-head'
export default function DownloadsPage({ releaseData }) {
@ -15,8 +16,11 @@ export default function DownloadsPage({ releaseData }) {
product="Vault"
version={VERSION}
releaseData={releaseData}
changelog={changelogUrl}
/>
changelog={changelogUrl}>
<p className="description g-type-body">Release notes are available in our
<Link href="/docs/release-notes"><a> documentation</a></Link>.
</p>
</ProductDownloader>
</div>
)
}