
sidebar_class_name: 'tw:hidden' doesn't seem to work when the page is an index.mdx inside some folder. Make it a top-level document instead Fixes #275 Reviewed-on: https://codeberg.org/freesewing/freesewing/pulls/295 Co-authored-by: Jonathan Haas <haasjona@gmail.com> Co-committed-by: Jonathan Haas <haasjona@gmail.com>
16 lines
480 B
Text
16 lines
480 B
Text
---
|
|
title: Measurement Set
|
|
sidebar_class_name: 'tw:hidden'
|
|
---
|
|
|
|
import { getSearchParam } from '@freesewing/utils'
|
|
import { DocusaurusDoc } from '@freesewing/react/components/Docusaurus'
|
|
import { RoleBlock } from '@freesewing/react/components/Role'
|
|
import { Set } from '@freesewing/react/components/Account'
|
|
import Link from '@docusaurus/Link'
|
|
|
|
<DocusaurusDoc>
|
|
<RoleBlock user>
|
|
<Set Link={Link} id={getSearchParam('id')} publicOnly={true} />
|
|
</RoleBlock>
|
|
</DocusaurusDoc>
|