Added detailed library scan result

Small layout fixes in game detail view
This commit is contained in:
grimsi
2022-08-23 13:17:56 +02:00
parent 3325f066bd
commit 3877b5defd
16 changed files with 159 additions and 33 deletions
@@ -17,13 +17,11 @@
<p>{{game.summary}}</p>
</div>
<div *ngIf="game.companies !== undefined && game.companies.length > 0">
<div *ngIf="companiesWithLogo.length > 0">
<h2>Developed by</h2>
<div fxLayout="row wrap" fxLayoutGap="8px grid">
<div *ngFor="let company of game.companies">
<img *ngIf="company.logoId !== undefined && company.logoId.length > 0" style="height: 52px;"
src="v1/images/{{company.logoId}}" alt="{{company.name}}">
<span *ngIf="company.logoId.length > 0">{{company.name}}</span>
<div *ngFor="let company of companiesWithLogo">
<img style="height: 52px;" src="v1/images/{{company.logoId}}" alt="{{company.name}}" [matTooltip]="company.name">
</div>
</div>
</div>