Skip to content
This repository has been archived by the owner on Jun 10, 2024. It is now read-only.

Commit

Permalink
Merge pull request #430 from sarbull/react
Browse files Browse the repository at this point in the history
Bump version to v4.0.1 [MAJOR]
  • Loading branch information
sarbull committed Sep 23, 2022
2 parents f10c13d + feda562 commit 213d5b8
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ LABEL org.opencontainers.image.vendor = "odpi" \
org.opencontainers.image.ext.docker.params = ""

# Just copy the built files & serve via nginx
COPY build/prod /var/www/
COPY build/ /var/www/
COPY etc/nginx.conf /etc/nginx/conf.d/default.conf
CMD ["nginx", "-g", "daemon off;"]
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-ui",
"version": "0.1.0",
"version": "4.0.1",
"private": true,
"dependencies": {
"@mantine/core": "4.2.9",
Expand Down
6 changes: 3 additions & 3 deletions src/components/AppInstance/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ export function AppInstance() {
<Routes>
<Route path="/hi" element={<>Hi</>} />

<Route path={`/asset-lineage/:guid/:lineageType`} element={<EgeriaLineageGraphRouteWrapper apiUrl={''} />} />
<Route path={'/assets/:guid/details'} element={<EgeriaAssetDetails apiUrl={''} />} />
<Route path={'/assets/catalog'} element={<EgeriaAssetCatalog apiUrl={''} />} />
<Route path={`/asset-lineage/:guid/:lineageType`} element={<RequireAuth><EgeriaLineageGraphRouteWrapper apiUrl={''} /></RequireAuth>} />
<Route path={'/assets/:guid/details'} element={<RequireAuth><EgeriaAssetDetails apiUrl={''} /></RequireAuth>} />
<Route path={'/assets/catalog'} element={<RequireAuth><EgeriaAssetCatalog apiUrl={''} /></RequireAuth>} />
<Route path={"/glossary"} element={<RequireAuth><EgeriaGlossary /></RequireAuth>} />

<Route path={"/about"} element={<EgeriaAbout apiUrl={`${apiUrl()}`} />} />
Expand Down

0 comments on commit 213d5b8

Please sign in to comment.