Skip to content

Commit

Permalink
fixing broken logos on redirect back from provider
Browse files Browse the repository at this point in the history
fixes #264
  • Loading branch information
AnalogJ committed Oct 7, 2023
1 parent 0fe9e95 commit fbdfd02
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
<h2 class="az-content-title">Connected Sources</h2>

<div *ngIf="!loading else isLoadingTemplate" class="row">

<app-medical-sources-card class="col-sm-3 mg-b-20 px-3"
*ngFor="let sourceData of connectedSourceList"
[sourceInfo]="sourceData"
[status]="status[sourceData.source.id] || status[sourceData.metadata.source_type]"
[status]="status[sourceData.source?.id] || status[sourceData.metadata?.source_type]"
(onClick)="openModal(contentModalRef, $event)"
></app-medical-sources-card>
</div>
Expand Down

0 comments on commit fbdfd02

Please sign in to comment.