فهرست منبع

Merge pull request #371 from smiclea/fix-project-page

Fix project details page not loading
Dorin Paslaru 7 سال پیش
والد
کامیت
8bceb7fc0e
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      src/sources/ProjectSource.js

+ 1 - 1
src/sources/ProjectSource.js

@@ -34,7 +34,7 @@ class ProjectsSource {
   }
 
   static getProjectDetails(projectId: string): Promise<Project> {
-    return Api.get(`${coriolisUrl}/identity/projects/${projectId}`).then(response => {
+    return Api.get(`${coriolisUrl}identity/projects/${projectId}`).then(response => {
       return response.data.project
     })
   }