Additional Minor Changes

This commit is contained in:
2025-08-10 02:55:41 -06:00
parent 97edd20ec2
commit 9b8523ad5d
3 changed files with 7 additions and 12 deletions

View File

@@ -132,9 +132,9 @@ function NavigationSidebar({ currentPage, onNavigate }) {
</AccordionSummary>
<AccordionDetails sx={{ p: 0, bgcolor: "#232323" }}>
<NavItem icon={<JobsIcon fontSize="small" />} label="Scheduled Jobs" pageKey="jobs" />
<NavItem icon={<WorkflowsIcon fontSize="small" />} label="Workflows" pageKey="workflows" />
<NavItem icon={<ScriptIcon fontSize="small" />} label="Scripts" pageKey="scripts" />
<NavItem icon={<CommunityIcon fontSize="small" />} label="Community Nodes" pageKey="community" />
<NavItem icon={<WorkflowsIcon fontSize="small" />} label="Workflows" pageKey="workflows" />
<NavItem icon={<CommunityIcon fontSize="small" />} label="Community Content" pageKey="community" />
</AccordionDetails>
</Accordion>
</Box>

View File

@@ -77,11 +77,6 @@ export default function NodeSidebar({
</Typography>
</AccordionSummary>
<AccordionDetails sx={{ p: 0, bgcolor: "#232323" }}>
<Tooltip title="Export Current Tab to a JSON File" placement="right" arrow>
<Button fullWidth startIcon={<SaveAltIcon />} onClick={handleExportFlow} sx={buttonStyle}>
Export Current Flow
</Button>
</Tooltip>
<Tooltip title="Save Current Flow to Workflows Folder" placement="right" arrow>
<Button
fullWidth
@@ -97,12 +92,12 @@ export default function NodeSidebar({
</Tooltip>
<Tooltip title="Import JSON File into New Flow Tab" placement="right" arrow>
<Button fullWidth startIcon={<FileOpenIcon />} onClick={handleImportFlow} sx={buttonStyle}>
Import Flow
Import Workflow (JSON)
</Button>
</Tooltip>
<Tooltip title="Destroy all Flow Tabs Immediately" placement="right" arrow>
<Button fullWidth startIcon={<DeleteForeverIcon />} onClick={handleOpenCloseAllDialog} sx={buttonStyle}>
Close All Flows
<Tooltip title="Export Current Tab to a JSON File" placement="right" arrow>
<Button fullWidth startIcon={<SaveAltIcon />} onClick={handleExportFlow} sx={buttonStyle}>
Export Workflow (JSON)
</Button>
</Tooltip>
</AccordionDetails>

View File

@@ -299,7 +299,7 @@ export default function WorkflowList({ onOpenWorkflow }) {
Workflows
</Typography>
<Typography variant="body2" sx={{ color: "#aaa" }}>
Manage workflow folders and files.
Create, edit, and rearrange workflows within an organized folder structure.
</Typography>
</Box>
<Box />