diff options
author | Fabio Berger <me@fabioberger.com> | 2018-08-04 00:28:56 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-08-04 00:28:56 +0800 |
commit | a728247d6c4819d15a7fadd4cd6dd582f150b258 (patch) | |
tree | 4f0758c9561d83d54f263e4381391f4a3a0fd2f3 /packages/react-shared/src/components | |
parent | 36d615318d7a0d63c254b42f029d393aea04c674 (diff) | |
download | dexon-sol-tools-a728247d6c4819d15a7fadd4cd6dd582f150b258.tar dexon-sol-tools-a728247d6c4819d15a7fadd4cd6dd582f150b258.tar.gz dexon-sol-tools-a728247d6c4819d15a7fadd4cd6dd582f150b258.tar.bz2 dexon-sol-tools-a728247d6c4819d15a7fadd4cd6dd582f150b258.tar.lz dexon-sol-tools-a728247d6c4819d15a7fadd4cd6dd582f150b258.tar.xz dexon-sol-tools-a728247d6c4819d15a7fadd4cd6dd582f150b258.tar.zst dexon-sol-tools-a728247d6c4819d15a7fadd4cd6dd582f150b258.zip |
Display camelCase names all-caps properly
Diffstat (limited to 'packages/react-shared/src/components')
-rw-r--r-- | packages/react-shared/src/components/markdown_section.tsx | 2 | ||||
-rw-r--r-- | packages/react-shared/src/components/nested_sidebar_menu.tsx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/packages/react-shared/src/components/markdown_section.tsx b/packages/react-shared/src/components/markdown_section.tsx index 3b65b3075..09b214548 100644 --- a/packages/react-shared/src/components/markdown_section.tsx +++ b/packages/react-shared/src/components/markdown_section.tsx @@ -42,7 +42,7 @@ export class MarkdownSection extends React.Component<MarkdownSectionProps, Markd const { sectionName, markdownContent, headerSize, githubLink } = this.props as PropsWithDefaults; const id = utils.getIdFromName(sectionName); - const finalSectionName = utils.convertDashesToSpaces(sectionName); + const finalSectionName = utils.convertCamelCaseToSpaces(sectionName); return ( <div className="md-px1 sm-px2 overflow-hidden" diff --git a/packages/react-shared/src/components/nested_sidebar_menu.tsx b/packages/react-shared/src/components/nested_sidebar_menu.tsx index 4b1c2f365..c8bddb59a 100644 --- a/packages/react-shared/src/components/nested_sidebar_menu.tsx +++ b/packages/react-shared/src/components/nested_sidebar_menu.tsx @@ -45,7 +45,7 @@ export class NestedSidebarMenu extends React.Component<NestedSidebarMenuProps, N }; public render(): React.ReactNode { const navigation = _.map(this.props.topLevelMenu, (menuItems: string[], sectionName: string) => { - const finalSectionName = utils.convertDashesToSpaces(sectionName); + const finalSectionName = utils.convertCamelCaseToSpaces(sectionName); if (this.props.shouldDisplaySectionHeaders) { // tslint:disable-next-line:no-unused-variable const id = utils.getIdFromName(sectionName); |