Skip to content

Commit

Permalink
Merge pull request #6259 from ProcessMaker/bugfix/FOUR-14195_B
Browse files Browse the repository at this point in the history
FOUR-14195:Launchpad carosuel does not show correct the image
  • Loading branch information
ryancooley committed Feb 22, 2024
2 parents f71ae85 + 8ddfe24 commit cc6970d
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions resources/js/processes-catalogue/components/ProcessesCarousel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,15 @@
v-for="(image, index) in images.length > 0 ? images : defaultImage"
:key="index"
class="custom-style"
:img-src="image.url"
/>
>
<template #img>
<img
:src="image.url"
:alt="process.name"
class="d-block w-100 img-carousel"
>
</template>
</b-carousel-slide>
</b-carousel>
</div>
</template>
Expand Down Expand Up @@ -104,7 +111,7 @@ export default {
width: 100%;
height: 400px;
}
.img-fluid {
.img-carousel {
max-width: 100%;
height: inherit;
}
Expand Down

0 comments on commit cc6970d

Please sign in to comment.