We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6460f3e + 647b4ff commit 521fd92Copy full SHA for 521fd92
www/src/components/DocsAlert.js
@@ -11,7 +11,7 @@ export default function DocsAlert() {
11
<Row>
12
<Alert variant="warning" className="w-100">
13
You are currently viewing the auto-generated docs from{' '}
14
- {netlify.pullRequest ? (
+ {netlify.pullRequest === 'true' ? (
15
<span>
16
a{' '}
17
<Alert.Link
@@ -21,7 +21,9 @@ export default function DocsAlert() {
21
</Alert.Link>
22
</span>
23
) : (
24
- <span>the {netlify.branch} branch</span>
+ <span>
25
+ the <b>{netlify.branch}</b> branch
26
+ </span>
27
)}
28
. The docs for the current release are available at{' '}
29
<Alert.Link href="https://react-bootstrap.github.io/">
0 commit comments