thumbnail placeholder fix

This commit is contained in:
2023-10-28 14:12:21 +02:00
parent 8cd43adff3
commit bea3c59405
@@ -2,16 +2,13 @@
<section class="train-image-section"> <section class="train-image-section">
<div class="train-image__content" :class="{ sponsor: store.chosenVehicle?.isSponsorsOnly }"> <div class="train-image__content" :class="{ sponsor: store.chosenVehicle?.isSponsorsOnly }">
<img <img
v-if="store.chosenVehicle"
tabindex="0" tabindex="0"
:src="getThumbnailURL(store.chosenVehicle.type, 'small')" :src="store.chosenVehicle ? getThumbnailURL(store.chosenVehicle.type, 'small') : '/images/placeholder.jpg'"
@click="onImageClick" @click="onImageClick"
@keydown.enter="onImageClick" @keydown.enter="onImageClick"
@error="onImageError" @error="onImageError"
type="image/jpeg" type="image/jpeg"
/> />
<img v-else src="/images/placeholder.jpg" alt="placeholder" />
</div> </div>
<div class="train-image__info" v-if="store.chosenVehicle"> <div class="train-image__info" v-if="store.chosenVehicle">