All checks were successful
farmcontrol/farmcontrol-ui/pipeline/head This commit looks good
49 lines
1014 B
JavaScript
49 lines
1014 B
JavaScript
const productionSidebarItems = [
|
|
{
|
|
key: 'overview',
|
|
iconKey: 'production',
|
|
label: 'Overview',
|
|
path: '/dashboard/production/overview'
|
|
},
|
|
{ type: 'divider' },
|
|
{
|
|
key: 'printers',
|
|
iconKey: 'printer',
|
|
label: 'Printers',
|
|
path: '/dashboard/production/printers'
|
|
},
|
|
{
|
|
key: 'jobs',
|
|
iconKey: 'job',
|
|
label: 'Jobs',
|
|
path: '/dashboard/production/jobs'
|
|
},
|
|
{
|
|
key: 'subJobs',
|
|
iconKey: 'subJob',
|
|
label: 'Sub Jobs',
|
|
path: '/dashboard/production/subjobs'
|
|
},
|
|
{ type: 'divider' },
|
|
{
|
|
key: 'gcodeFiles',
|
|
iconKey: 'gcodeFile',
|
|
label: 'GCode Files',
|
|
path: '/dashboard/production/gcodefiles'
|
|
},
|
|
{
|
|
key: 'printerProfiles',
|
|
iconKey: 'printerProfile',
|
|
label: 'Printer Profiles',
|
|
path: '/dashboard/production/printerprofiles'
|
|
},
|
|
{
|
|
key: 'filamentProfiles',
|
|
iconKey: 'filamentProfile',
|
|
label: 'Filament Profiles',
|
|
path: '/dashboard/production/filamentprofiles'
|
|
}
|
|
]
|
|
|
|
export default productionSidebarItems
|