- Removed redundant button elements for Templates and History from the form and process builder pages to streamline the interface. - Consolidated action buttons into dropdown menus for better organization and accessibility. - Enhanced visual hierarchy by adding section headers for Form Actions and Process Actions in dropdowns, improving clarity for users. - Updated styles for dropdown menus to ensure consistent appearance and interaction across different screen sizes.
49 lines
1.0 KiB
JavaScript
49 lines
1.0 KiB
JavaScript
export default [
|
|
{
|
|
header: "",
|
|
description: "",
|
|
child: [
|
|
{
|
|
title: "Dashboard",
|
|
path: "/dashboard",
|
|
icon: "material-symbols:dashboard",
|
|
child: [],
|
|
meta: {},
|
|
},
|
|
],
|
|
},
|
|
// {
|
|
// header: "BPM",
|
|
// description: "Manage your BPM application",
|
|
// child: [
|
|
// {
|
|
// title: "Form",
|
|
// icon: "material-symbols:dynamic-form",
|
|
// path: "http://localhost:3000/workflow/7f024ce2-ce5d-43af-a18e-8e10d390e32b",
|
|
// external: true,
|
|
// },
|
|
// ],
|
|
// meta: {
|
|
// auth: {
|
|
// role: ["Developer"],
|
|
// },
|
|
// },
|
|
// },
|
|
{
|
|
header: "Design & Build",
|
|
description: "Create and design your workflows and forms",
|
|
child: [
|
|
{
|
|
title: "Form Designer",
|
|
icon: "material-symbols:dynamic-form",
|
|
path: "/form-builder/manage",
|
|
},
|
|
{
|
|
title: "Process Designer",
|
|
icon: "material-symbols:account-tree",
|
|
path: "/process-builder/manage",
|
|
},
|
|
],
|
|
},
|
|
];
|