mirror of
https://github.com/Kingsrook/qqq-frontend-material-dashboard.git
synced 2025-07-18 05:10:45 +00:00
Merge branch 'dev' into feature/breadcrumb-labels
This commit is contained in:
10
src/App.tsx
10
src/App.tsx
@ -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}
|
||||
|
Reference in New Issue
Block a user