Skip to content

Commit

Permalink
Update box.component.html
Browse files Browse the repository at this point in the history
Update API uuid and links
  • Loading branch information
Gecete authored Oct 10, 2023
1 parent dfe2d24 commit 0205bce
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/app/components/box/box.component.html
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<div *ngIf="info" id="{{ 'id' + info.id }}" (mouseover)="hover=true" (mouseleave)="hover=false" class="autoGrid" [ngStyle]="{border: hover ? '5px solid '+info.color : '5px solid #8497a0'}">
<div *ngIf="info" id="{{ 'id' + info.uuid }}" (mouseover)="hover=true" (mouseleave)="hover=false" class="autoGrid" [ngStyle]="{border: hover ? '5px solid '+info.color : '5px solid #8497a0'}">
<h2>#{{info.id}}</h2>
<a target="_blank" href="{{info.link}}">
<a target="_blank" href="{{info.websiteUrl}}">
<h3 data-toggle="tooltip" data-placement="top" title="{{info.name}}">{{info.name.length < 12 ? info.name : info.code}}</h3>
<img id="{{ info.id }}" data-toggle="tooltip" data-placement="bottom"
<img id="{{ info.uuid }}" data-toggle="tooltip" data-placement="bottom"
title="{{info.description === null ? 'No description available' : info.description}}" src="{{info.symbol}}"
height="50" width="50" alt="{{info.name}}">
</a>
<h4>{{info.value}} USD</h4>
</div>
</div>

0 comments on commit 0205bce

Please sign in to comment.