Skip to content

Commit

Permalink
Merge pull request #71 from IBEC-BOX/slider
Browse files Browse the repository at this point in the history
fix slider
  • Loading branch information
Aidosgd authored Feb 19, 2024
2 parents cf252b7 + 2922ec9 commit c548175
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/runtime/components/Parts/Slider.vue
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@


<div v-if="slide.numbers" v-bind="slide.numbers.attrs" class="d-flex flex-column flex-md-row">
<div v-for="number in slide.numbers" v-bind="slide.numbers.itemAttrs" class="d-flex flex-column">
<div v-for="(number, index) in slide.numbers" :key="`numbers-${index}`" v-bind="slide.numbers.itemAttrs" class="d-flex flex-column">
<span v-bind="slide.numbers.numAttrs"> {{ number.number }} {{ number.postfix}} </span>
<span v-bind="slide.numbers.subtitleAttrs"> {{ number.subtitle }}</span>
</div>
Expand Down

0 comments on commit c548175

Please sign in to comment.