Skip to content

Commit

Permalink
#157 resolve OESelect index error
Browse files Browse the repository at this point in the history
  • Loading branch information
yannickkuypers committed Nov 13, 2023
1 parent 013c7c4 commit f4e040d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/dumb/OeSelect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
{{ $props.placeholder }}
</div>
</div>
<template v-for="option in options" :key="'select-' + index">
<template v-for="(option, index) in options" :key="'select-' + index">
<div
class="vl-select__item vl-select__item--choice vl-select__item--selectable"
:class="{ 'is-highlighted': isEqual(selectedOption, option), '': !isEqual(selectedOption, option) }"
Expand Down

0 comments on commit f4e040d

Please sign in to comment.