Skip to content

Commit

Permalink
Merge pull request #1465 from newrelic/ru/merge-in-develop
Browse files Browse the repository at this point in the history
Ru/merge in develop
  • Loading branch information
rudouglas authored Jul 7, 2021
2 parents d31fc3d + 358bb6a commit 4a84e35
Show file tree
Hide file tree
Showing 6 changed files with 1,348 additions and 294 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ to source our documentation into GraphQL. This plugin has some configuration tha
- [Update `gatsby-config.js`](https://github.com/newrelic/developer-website/blob/ae42737f5f1cf556f3c44d864655c9a571739e28/gatsby-config.js#L161)
with the new release number to update the bundle release version.

- To obtain the version release number visit the `wanda-ec-ui` repository on Github enterprise and look at the release version.
- To obtain the version release number visit the `one-core` repository on Github enterprise and look at the release version in `sdk-loader.js`. You can use the one-core site to confirm if any issues are developer site specific or occurring in the SDK.

### Step 2: Add any new APIs or components to our constants list

Expand Down
30 changes: 15 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,26 +13,26 @@
"classnames": "^2.2.6",
"date-fns": "^2.16.1",
"diff": "^4.0.2",
"gatsby": "^3.5.0",
"gatsby-image": "^2.4.20",
"gatsby-plugin-emotion": "^6.3.0",
"gatsby-plugin-manifest": "^3.3.0",
"gatsby-plugin-mdx": "^1.4.0",
"gatsby": "^3.8.0",
"gatsby-image": "^3.8.0",
"gatsby-plugin-emotion": "^6.8.0",
"gatsby-plugin-manifest": "^3.8.0",
"gatsby-plugin-mdx": "^2.8.0",
"gatsby-plugin-meta-redirect": "^1.1.1",
"gatsby-plugin-offline": "^4.3.0",
"gatsby-plugin-react-helmet": "^4.3.0",
"gatsby-plugin-robots-txt": "^1.5.3",
"gatsby-plugin-sass": "^4.3.0",
"gatsby-plugin-sharp": "^3.3.1",
"gatsby-plugin-sitemap": "^4.0.0-next.0",
"gatsby-plugin-offline": "^4.8.0",
"gatsby-plugin-react-helmet": "^4.8.0",
"gatsby-plugin-robots-txt": "^1.6.8",
"gatsby-plugin-sass": "^4.8.0",
"gatsby-plugin-sharp": "^3.8.0",
"gatsby-plugin-sitemap": "^4.4.0",
"gatsby-plugin-use-dark-mode": "^1.3.0",
"gatsby-plugin-use-query-params": "^1.0.1",
"gatsby-remark-autolink-headers": "^2.9.0",
"gatsby-remark-images": "^5.0.0",
"gatsby-source-filesystem": "^3.3.0",
"gatsby-remark-images": "^5.5.0",
"gatsby-source-filesystem": "^3.8.0",
"gatsby-transformer-json": "^3.3.0",
"gatsby-transformer-remark": "^4.0.0",
"gatsby-transformer-sharp": "^3.3.0",
"gatsby-transformer-remark": "^4.5.0",
"gatsby-transformer-sharp": "^3.8.0",
"js-cookie": "^2.2.1",
"lodash.get": "^4.4.2",
"node-fetch": "^2.6.1",
Expand Down
2 changes: 1 addition & 1 deletion src/components/GuideTile/GuideTile.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ const GuideTile = ({ duration, title, description, className, to }) => (
);

GuideTile.propTypes = {
duration: PropTypes.string.isRequired,
duration: PropTypes.string,
title: PropTypes.string.isRequired,
description: PropTypes.string.isRequired,
className: PropTypes.string,
Expand Down
5 changes: 4 additions & 1 deletion src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,10 @@ const IndexPage = ({ data, pageContext, location }) => {
</p>
<Button as={Link} variant={Button.VARIANT.PRIMARY} to="/podcasts">
Listen
<FeatherIcon name="link" />
<FeatherIcon
className={styles.externalLinkIcon}
name="external-link"
/>
</Button>
</div>
<img src={podcastBadge} alt="podcast badge" />
Expand Down
5 changes: 4 additions & 1 deletion src/pages/nerd-bytes.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,10 @@ const NerdbytesPage = ({ location }) => {
</p>
<Button as={Link} variant={Button.VARIANT.PRIMARY} to="/podcasts">
Listen
<FeatherIcon name="link" />
<FeatherIcon
className={styles.externalLinkIcon}
name="external-link"
/>
</Button>
</div>
<img src={podcastBadge} alt="podcast badge" />
Expand Down
Loading

0 comments on commit 4a84e35

Please sign in to comment.