diff --git a/dashboard/src/components/api/devfile-registry.factory.ts b/dashboard/src/components/api/devfile-registry.factory.ts index b4da3618acf..a8cc65c9384 100644 --- a/dashboard/src/components/api/devfile-registry.factory.ts +++ b/dashboard/src/components/api/devfile-registry.factory.ts @@ -43,7 +43,7 @@ export class DevfileRegistry { } fetchDevfiles(location: string): ng.IPromise> { - let promise = this.$http({ 'method': 'GET', 'url': location + '/devfiles/' }); + let promise = this.$http({ 'method': 'GET', 'url': location + '/devfiles/index.json' }); return promise.then((result: any) => { return result.data; });