Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(openchallenges): remove Sage from sponsor list #2287

Merged
merged 4 commits into from
Oct 31, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,6 @@
title="Informatics Technology for Cancer Research"
/>
</div>
<div class="col text-center sponsor-item">
<img
[src]="(sage$ | async)?.url"
height="80px"
alt="Sage Bionetworks"
title="Sage Bionetworks"
/>
</div>
</div>
</div>
</section>
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ import { Observable } from 'rxjs';
})
export class SponsorListComponent implements OnInit {
itcr$: Observable<Image> | undefined;
aws$: Observable<Image> | undefined;
sage$: Observable<Image> | undefined;
readonly height = ImageHeight._140px;

constructor(private imageService: ImageService) {}
Expand All @@ -27,9 +25,5 @@ export class SponsorListComponent implements OnInit {
objectKey: 'logo/nci-itcr-alt.svg',
height: this.height,
});
this.sage$ = this.imageService.getImage({
objectKey: 'logo/sage-bionetworks-alt.svg',
height: this.height,
});
}
}