File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
docs/get-involved/hacktoberfest Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ title: Hacktoberfest 2021 at Redis
44sidebar_label : Start Here
55slug : /hacktoberfest/
66authors : [suze,simon]
7+ useNextPrev : false
78---
89
910
Original file line number Diff line number Diff line change @@ -169,9 +169,11 @@ function DocItem(props: Props): JSX.Element {
169169 </ div >
170170 </ div >
171171 ) }
172- < div className = "margin-vert--lg" >
173- < DocPaginator metadata = { metadata } />
174- </ div >
172+ { ( ! DocContent . frontMatter . hasOwnProperty ( 'useNextPrev' ) || DocContent . frontMatter . useNextPrev === true ) && (
173+ < div className = "margin-vert--lg" >
174+ < DocPaginator metadata = { metadata } />
175+ </ div >
176+ ) }
175177 </ div >
176178 </ div >
177179 { ! hideTableOfContents && DocContent . toc && (
You can’t perform that action at this time.
0 commit comments