Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/frontend/dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<link rel="icon" type="image/svg+xml" href="/assets/gradient-icon-CRwZKfVU.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Parallax Open Source</title>
<script type="module" crossorigin src="/assets/index-Bht8DC43.js"></script>
<script type="module" crossorigin src="/assets/index-CFsUl6jG.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-J8fDKCu3.css">
</head>
<body>
Expand Down
8 changes: 8 additions & 0 deletions src/frontend/src/components/common/drawer-layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import {
IconLayoutSidebarRightCollapse,
IconLayoutSidebarRightExpand,
IconPlus,
IconTopologyStar3,
} from '@tabler/icons-react';
import { JoinCommand, NodeList } from '../inputs';

Expand Down Expand Up @@ -152,6 +153,7 @@ export const DrawerLayout: FC<PropsWithChildren> = ({ children }) => {
</Stack>
</Stack>
),
confirmLabel: 'Finish',
});

return (
Expand All @@ -172,6 +174,12 @@ export const DrawerLayout: FC<PropsWithChildren> = ({ children }) => {
</Stack>
{sidebarExpanded && (
<Stack sx={{ gap: 4 }}>
<Stack direction='row' sx={{ gap: 1, color: 'text.disabled' }}>
<IconTopologyStar3 size='1.25rem' />
<Typography variant='body1' sx={{ fontWeight: 'bolder', textTransform: 'uppercase' }}>
Cluster topology
</Typography>
</Stack>
<NodeList variant='menu' />
<Button color='info' startIcon={<IconPlus />} onClick={openJoinCommand}>
Add Nodes
Expand Down