Cosmetic Fix to display Award Images in Admin View (#870)

Fix to correctly display the Award image in the admin UI
This commit is contained in:
DaGeek 2020-10-13 20:41:16 +01:00 committed by GitHub
parent 6c553569bf
commit 5371989921
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,8 +15,8 @@
<td>{{ $award->description }}</td>
<td>
@if($award->image)
<img src="{{ $award->image }}" name="{{ $award->name }}" alt="No Image Available"/>
@if($award->image_url)
<img src="{{ $award->image_url }}" name="{{ $award->name }}" alt="No Image Available" style="height: 100px"/>
@else
-
@endif