Skip to content

Commit

Permalink
fix(nx-dev): Scrollbar should show on CI release page if necessary
Browse files Browse the repository at this point in the history
update
  • Loading branch information
ndcunningham committed May 27, 2024
1 parent 4cbb0f0 commit 03e024b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion nx-dev/feature-doc-viewer/src/lib/doc-viewer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ export function DocViewer({
router.asPath.includes('/ci/intro/ci-with-nx') ||
router.asPath.includes('/extending-nx/intro/getting-started') ||
router.asPath.includes('/nx-api/devkit') ||
router.asPath.includes('/reference/glossary');
router.asPath.includes('/reference/glossary') ||
router.asPath.includes('/ci/reference/release-notes');
const ref = useRef<HTMLDivElement | null>(null);

const { metadata, node, treeNode } = renderMarkdown(
Expand Down

0 comments on commit 03e024b

Please sign in to comment.