Skip to content

Commit

Permalink
Update detail.component.html
Browse files Browse the repository at this point in the history
Fixes target object id being incorrect
  • Loading branch information
EmosewaMC authored and Xiphoseer committed Dec 18, 2023
1 parent f1b3553 commit 3623d1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/missions/detail/detail.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ <h2 *ngIf="$mission | async; let mission">
<a *ngIf="mission.offer_objectID > 0" href="/objects/{{mission.offer_objectID}}"><lux-number-flag
name="offer_objectID" [value]="mission.offer_objectID"></lux-number-flag></a>
<a *ngIf="mission.target_objectID > 0" href="/objects/{{mission.target_objectID}}"><lux-number-flag
name="target_objectID" [value]="mission.offer_objectID"></lux-number-flag></a>
name="target_objectID" [value]="mission.target_objectID"></lux-number-flag></a>
</section>

<section *ngIf="mission.prereqMissionID">
Expand Down

0 comments on commit 3623d1d

Please sign in to comment.