Skip to content

Commit

Permalink
Merge pull request #88 from GeoTecINIT/E4G-238
Browse files Browse the repository at this point in the history
revisar links de LO mal linkados
  • Loading branch information
claumpp authored Sep 30, 2020
2 parents 3aa0647 + 136cc62 commit 4dcb00f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/views/detail/detail.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ <h4> Lecture: {{ model.name }} </h4>
<ul #showILO>
<div *ngFor="let l of model.inheritedLearningObjectives">
<li *ngIf="l.name == l.concept_id">{{ l.name }}</li>
<li *ngIf="l.name != l.concept_id"><a href="https://bok.eo4geo.eu/{{l.concept_id}}"
<li *ngIf="l.name != l.concept_id"><a href="https://bok.eo4geo.eu/{{l.concept_id.split(']')[0].split('[')[1]}}"
target="_blank">{{l.name}}</a></li>
</div>
</ul>
Expand All @@ -227,7 +227,7 @@ <h4> Lecture: {{ model.name }} </h4>
<ul #showLO>
<div *ngFor="let l of model.learningObjectives">
<li *ngIf="l.name == l.concept_id">{{ l.name }}</li>
<li *ngIf="l.name != l.concept_id"><a href="https://bok.eo4geo.eu/{{l.concept_id}}" target="_blank">{{l.name}}</a></li>
<li *ngIf="l.name != l.concept_id"><a href="https://bok.eo4geo.eu/{{l.concept_id.split(']')[0].split('[')[1]}}" target="_blank">{{l.name}}</a></li>
</div>
</ul>
</div>
Expand Down

0 comments on commit 4dcb00f

Please sign in to comment.