Skip to content

Commit

Permalink
Fix All Modules Broken Link
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrozadotdev committed Oct 17, 2023
1 parent 5bdbc83 commit fd4b97b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions client/packages/openblocks/src/app.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { ConfigProvider } from "antd";
import {
ALL_APPLICATIONS_URL,
ALL_MODULES_URL,
APP_EDITOR_URL,
APPLICATION_VIEW_URL,
BASE_URL,
Expand Down Expand Up @@ -121,6 +122,7 @@ class AppIndex extends React.Component<AppIndexProps, any> {
/>
)}
<Route exact path={IMPORT_APP_FROM_TEMPLATE_URL} component={AppFromTemplate} />
<Route path={ALL_MODULES_URL} component={ApplicationHome} />
<Route path={APP_EDITOR_URL} component={AppEditor} />
<Route
path={[
Expand Down
1 change: 1 addition & 0 deletions client/packages/openblocks/src/constants/routesURL.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ export const PERMISSION_SETTING_DETAIL = `${PERMISSION_SETTING}/:groupId`;
export const ORGANIZATION_SETTING_DETAIL = `${ORGANIZATION_SETTING}/:orgId`;

export const ALL_APPLICATIONS_URL = "/apps";
export const ALL_MODULES_URL = "/apps/module";
export const MODULE_APPLICATIONS_URL = "/apps/module";
export const DATASOURCE_URL = `/datasource`;
export const DATASOURCE_CREATE_URL = `${DATASOURCE_URL}/new/:datasourceType`;
Expand Down

0 comments on commit fd4b97b

Please sign in to comment.