Skip to content

Commit

Permalink
Update upstream references
Browse files Browse the repository at this point in the history
  • Loading branch information
jeff-phillips-18 committed Feb 18, 2021
1 parent d2c55ec commit 0e50b5d
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@
BACKEND_PORT=8080
CONTAINER_BUILDER=docker
IMAGE_REPOSITORY=quay.io/opendatahub/odh-dashboard:latest
SOURCE_REPOSITORY_URL=git@github.com:opendatahub-io/odh-dashboard.git
SOURCE_REPOSITORY_URL=git@github.com:red-hat-data-services/odh-dashboard.git
SOURCE_REPOSITORY_REF=master
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Before developing for ODH, the basic requirements:
## Development
1. Clone the repository
```
$ git clone https://github.com/opendatahub-io/odh-dashboard.git
$ git clone https://github.com/red-hat-data-services/odh-dashboard
```
1. Within the repo context, install project dependencies
Expand Down
6 changes: 3 additions & 3 deletions backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/opendatahub-io/odh-dashboard.git"
"url": "git+https://github.com/red-hat-data-services/odh-dashboard.git"
},
"homepage": "https://github.com/opendatahub-io/odh-dashboard#readme",
"homepage": "https://github.com/red-hat-data-services/odh-dashboard#readme",
"bugs": {
"url": "https://github.com/opendatahub-io/odh-dashboard/issues"
"url": "https://github.com/red-hat-data-services/odh-dashboard/issues"
},
"engines": {
"node": ">=12.0.0"
Expand Down
8 changes: 4 additions & 4 deletions frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"name": "frontend",
"version": "0.1.0",
"description": "Frontend for Open Data Hub dashboard.",
"description": "Frontend for RHODS dashboard.",
"author": "Red Hat",
"license": "ISC",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/opendatahub-io/odh-dashboard.git"
"url": "git+https://github.com/red-hat-data-services/odh-dashboard.git"
},
"homepage": "https://github.com/opendatahub-io/odh-dashboard#readme",
"homepage": "https://github.com/red-hat-data-services/odh-dashboard#readme",
"bugs": {
"url": "https://github.com/opendatahub-io/odh-dashboard/issues"
"url": "https://github.com/red-hat-data-services/odh-dashboard/issues"
},
"engines": {
"node": ">=12.0.0"
Expand Down
7 changes: 3 additions & 4 deletions frontend/src/app/NavSidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,9 @@ const NavDataItem: React.FC<{ item: NavDataItem; pathname: string }> = ({ item,
isExpanded={expanded}
onExpand={(e, val) => setExpanded(val)}
>
{children.map((childItem) => {
console.dir(childItem);
return <NavDataItem key={childItem.id} item={childItem} pathname={pathname} />;
})}
{children.map((childItem) => (
<NavDataItem key={childItem.id} item={childItem} pathname={pathname} />
))}
</NavExpandable>
);
}
Expand Down
1 change: 0 additions & 1 deletion frontend/src/redux/actions/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ export const detectUser = () => {
dispatch(getUserPending());
try {
const response = await axios.get(url, {});
console.dir(response);
dispatch(getUserFulfilled(response.data));
} catch (e) {
dispatch(getUserRejected(e.response.data));
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/opendatahub-io/odh-dashboard.git"
"url": "git+https://github.com/red-hat-data-services/odh-dashboard.git"
},
"homepage": "https://github.com/opendatahub-io/odh-dashboard#readme",
"homepage": "https://github.comred-hat-data-services/odh-dashboard#readme",
"bugs": {
"url": "https://github.com/opendatahub-io/odh-dashboard/issues"
"url": "https://github.comred-hat-data-services/odh-dashboard/issues"
},
"engines": {
"node": ">=12.0.0"
Expand Down

0 comments on commit 0e50b5d

Please sign in to comment.