Skip to content

Commit cfa7d65

Browse files
Merge pull request opendatahub-io#40 from gmfrasca/update-frontend-references
feat(frontend): Update GitHub References in UI to point to ODH Repo Fork
2 parents a0423cd + 1b74c8f commit cfa7d65

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[
22
{
33
"name": "[Demo] flip-coin",
4-
"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.",
4+
"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.",
55
"file": "/samples/flip-coin/condition.yaml"
66
}
77
]

frontend/src/components/Router.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -132,9 +132,9 @@ export const RoutePageFactory = {
132132
};
133133

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

140140
export interface DialogProps {

frontend/src/components/SideNav.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ export class SideNav extends React.Component<SideNavInternalProps, SideNavState>
234234
tagName: tagName || 'unknown',
235235
commitHash: commitHash ? commitHash.substring(0, 7) : 'unknown',
236236
commitUrl:
237-
'https://www.github.com/kubeflow/kfp-tekton' +
237+
'https://www.github.com/opendatahub-io/ml-pipelines' +
238238
(commitHash && commitHash !== 'unknown' ? `/commit/${commitHash}` : ''),
239239
date: buildInfo.buildDate
240240
? new Date(buildInfo.buildDate).toLocaleDateString('en-US')

0 commit comments

Comments
 (0)