Skip to content

Commit

Permalink
Fix condition for adding info from related DS projects (#151)
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanfranklin authored Oct 3, 2023
1 parent d391189 commit 5d75a2f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export class MainWelcomeComponent implements OnInit {
this.projectsData = projectsData;
this.dsProjectsData = dsProjectsData;
if (!this.projectsData.loading && !this.dsProjectsData.loading) {
if (this.projectsData.failedMessage && !this.dsProjectsData.failedMessage) {
if (!this.projectsData.failedMessage && !this.dsProjectsData.failedMessage) {
// add extra info (i.e. DS project id/description) from related DS projects
this.projectsData.projects = this.agaveSystemsService.getProjectMetadata(projectsData.projects, dsProjectsData.projects);
}
Expand Down

0 comments on commit 5d75a2f

Please sign in to comment.