Skip to content

Commit

Permalink
Merge branch 'master' into windows-ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Janpot authored Aug 9, 2023
2 parents 9272049 + 66b5f1a commit 25f1b02
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
8 changes: 0 additions & 8 deletions docs/data/pages.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,9 @@
import type { MuiPage } from '@mui/monorepo/docs/src/MuiPage';
import BuildIcon from '@mui/icons-material/Build';
import CodeIcon from '@mui/icons-material/Code';
import DescriptionIcon from '@mui/icons-material/Description';
import VisibilityIcon from '@mui/icons-material/Visibility';
import componentsManifest from './toolpad/reference/components/manifest.json';

const pages: MuiPage[] = [
{
pathname: '/toolpad/getting-started',
icon: DescriptionIcon,
children: [
{ pathname: '/toolpad/getting-started/overview' },
{ pathname: '/toolpad/getting-started/installation' },
Expand All @@ -26,7 +21,6 @@ const pages: MuiPage[] = [
},
{
pathname: '/toolpad/concepts',
icon: VisibilityIcon,
children: [
{
pathname: '/toolpad/concepts/building-ui',
Expand Down Expand Up @@ -71,7 +65,6 @@ const pages: MuiPage[] = [
{
pathname: '/toolpad/how-to-guides',
title: 'How-to guides',
icon: BuildIcon,
children: [
{
pathname: '/toolpad/how-to-guides/connect-to-datasource',
Expand Down Expand Up @@ -136,7 +129,6 @@ const pages: MuiPage[] = [
{
pathname: '/toolpad/reference-group',
title: 'Reference',
icon: CodeIcon,
children: [
{
pathname: '/toolpad/reference/file-schema',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,14 @@ export default function HierarchyExplorer({ className }: HierarchyExplorerProps)
);

return (
<HierarchyExplorerRoot data-testid="hierarchy-explorer" className={className}>
<HierarchyExplorerRoot
sx={{
height: '100%',
overflow: 'auto',
}}
data-testid="hierarchy-explorer"
className={className}
>
<TreeView
aria-label="hierarchy explorer"
selected={activeNode ? [activeNode] : []}
Expand Down

0 comments on commit 25f1b02

Please sign in to comment.