Skip to content

Commit

Permalink
fix(staggered-fade-and-slide): remove useless data-index
Browse files Browse the repository at this point in the history
  • Loading branch information
victorcg88 committed Aug 15, 2024
1 parent b75e5c6 commit fb7a2df
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/x-components/src/components/base-grid.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,8 @@
data-test="grid"
>
<li
v-for="({ item, cssClass, slotName }, index) in gridItems"
v-for="{ item, cssClass, slotName } in gridItems"
:key="item.id"
:data-index="index"
:class="cssClass"
class="x-base-grid__item"
>
Expand Down

0 comments on commit fb7a2df

Please sign in to comment.