Skip to content

Commit

Permalink
fix(Project):return 404 when os details requests for openstack projec…
Browse files Browse the repository at this point in the history
…ts (#6242)
  • Loading branch information
dweinholz authored Oct 10, 2024
1 parent 0358ed4 commit 0bd9645
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export class ProjectOsDetailsComponent implements OnInit, OnChanges {
}

getProjectDetails(): void {
if (!this.project.project_application_perun_id) {
if (!this.project.project_application_perun_id || this.project.project_application_openstack_project) {
return
}
this.groupService.getProjectOSDetails(this.project.project_application_perun_id).subscribe((res: any): void => {
Expand Down

0 comments on commit 0bd9645

Please sign in to comment.