Skip to content

Commit

Permalink
fix slider
Browse files Browse the repository at this point in the history
  • Loading branch information
AibtVlr authored and Zh3nyaZh3nya committed Feb 19, 2024
1 parent cdad15b commit 2922ec9
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 2922ec9

Please sign in to comment.