Skip to content
This repository has been archived by the owner on Jan 8, 2024. It is now read-only.

Commit

Permalink
Merge pull request #486 from baloo/baloo/bugfixes/documentation-links
Browse files Browse the repository at this point in the history
Fix "edit this page" documentation link
  • Loading branch information
kylemac authored Oct 15, 2020
2 parents 4931e1a + 7849a6c commit 53177fb
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
7 changes: 5 additions & 2 deletions website/pages/commands/[[...page]].jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
import { productName } from 'data/metadata'
import {
productName,
productSlug,
} from 'data/metadata'
import order from 'data/commands-navigation.js'
import DocsPage from 'components/temporary_docs-page'
import {
Expand All @@ -12,7 +15,7 @@ function DocsLayout(props) {
return (
<DocsPage
productName={productName}
productSlug='blue'
productSlug={productSlug}
subpath={subpath}
order={order}
staticProps={props}
Expand Down
7 changes: 5 additions & 2 deletions website/pages/docs/[[...page]].jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
import { productName } from 'data/metadata'
import {
productName,
productSlug,
} from 'data/metadata'
import order from 'data/docs-navigation.js'
import DocsPage from 'components/temporary_docs-page'
import {
Expand All @@ -12,7 +15,7 @@ function DocsLayout(props) {
return (
<DocsPage
productName={productName}
productSlug='blue'
productSlug={productSlug}
subpath={subpath}
order={order}
staticProps={props}
Expand Down
7 changes: 5 additions & 2 deletions website/pages/plugins/[[...page]].jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
import { productName } from 'data/metadata'
import {
productName,
productSlug,
} from 'data/metadata'
import order from 'data/plugins-navigation.js'
import DocsPage from 'components/temporary_docs-page'
import {
Expand All @@ -12,7 +15,7 @@ function DocsLayout(props) {
return (
<DocsPage
productName={productName}
productSlug='blue'
productSlug={productSlug}
subpath={subpath}
order={order}
staticProps={props}
Expand Down

0 comments on commit 53177fb

Please sign in to comment.