Skip to content

Commit

Permalink
Merge pull request #40 from gmfrasca/update-frontend-references
Browse files Browse the repository at this point in the history
feat(frontend): Update GitHub References in UI to point to ODH Repo Fork
  • Loading branch information
openshift-merge-robot authored Sep 27, 2022
2 parents a0423cd + 1b74c8f commit cfa7d65
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion backend/src/apiserver/config/sample_config.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[
{
"name": "[Demo] flip-coin",
"description": "[source code](https://github.com/kubeflow/kfp-tekton/tree/master/samples/flip-coin) A conditional pipeline to flip coins based on a random number generator.",
"description": "[source code](https://github.com/opendatahub-io/ml-pipelines/tree/master/samples/flip-coin) A conditional pipeline to flip coins based on a random number generator.",
"file": "/samples/flip-coin/condition.yaml"
}
]
6 changes: 3 additions & 3 deletions frontend/src/components/Router.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,9 @@ export const RoutePageFactory = {
};

export const ExternalLinks = {
DOCUMENTATION: 'https://www.kubeflow.org/docs/pipelines/sdk/pipelines-with-tekton/',
GITHUB: 'https://github.com/kubeflow/kfp-tekton',
GITHUB_ISSUE: 'https://github.com/kubeflow/kfp-tekton/issues/new/choose',
DOCUMENTATION: 'https://www.kubeflow.org/docs/pipelines/sdk/pipelines-with-tekton/', // TODO: update?
GITHUB: 'https://github.com/opendatahub-io/ml-pipelines',
GITHUB_ISSUE: 'https://github.com/opendatahub-io/ml-pipelines/issues/new/choose',
};

export interface DialogProps {
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/SideNav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ export class SideNav extends React.Component<SideNavInternalProps, SideNavState>
tagName: tagName || 'unknown',
commitHash: commitHash ? commitHash.substring(0, 7) : 'unknown',
commitUrl:
'https://www.github.com/kubeflow/kfp-tekton' +
'https://www.github.com/opendatahub-io/ml-pipelines' +
(commitHash && commitHash !== 'unknown' ? `/commit/${commitHash}` : ''),
date: buildInfo.buildDate
? new Date(buildInfo.buildDate).toLocaleDateString('en-US')
Expand Down

0 comments on commit cfa7d65

Please sign in to comment.