Merge branch 'dev' into feature/breadcrumb-labels

This commit is contained in:
2023-06-23 16:52:06 -05:00
49 changed files with 6928 additions and 2750 deletions

View File

@ -309,7 +309,14 @@ export default function App()
name: `${app.label}`,
key: `${app.name}.edit`,
route: `${path}/:id/edit`,
component: <EntityEdit table={table} />,
component: <EntityEdit table={table} isDuplicate={false} />,
});
routeList.push({
name: `${app.label}`,
key: `${app.name}.duplicate`,
route: `${path}/:id/duplicate`,
component: <EntityEdit table={table} isDuplicate={true} />,
});
routeList.push({
@ -578,6 +585,7 @@ export default function App()
icon={branding.icon}
logo={branding.logo}
appName={branding.appName}
branding={branding}
routes={sideNavRoutes}
pathToLabelMap={pathToLabelMap}
onMouseEnter={handleOnMouseEnter}