Skip to content

Commit b0c8477

Browse files
committed
Fix missing header for missing images in item cards
1 parent 7436402 commit b0c8477

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/Item.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template>
22
<b-card no-body class="item-card" :class="classes" v-b-visible.400="load">
3-
<div v-if="hasImage" class="card-img-wrapper">
4-
<b-card-img-lazy class="thumbnail" offset="200" v-bind="thumbnail" />
3+
<div class="card-img-wrapper">
4+
<b-card-img-lazy v-if="hasImage" class="thumbnail" offset="200" v-bind="thumbnail" />
55
</div>
66
<b-card-body>
77
<b-card-title>

0 commit comments

Comments
 (0)