Skip to content

Commit

Permalink
vgi: Fix variable name search indexing
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaellehmkuhl authored and ArturoManzoli committed Jun 4, 2024
1 parent 28b0b38 commit c616aad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/mini-widgets/VeryGenericIndicator.vue
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@
/>
<div class="grid w-full h-32 grid-cols-1 my-2 overflow-x-hidden overflow-y-scroll">
<span
v-for="variable in variableNamesToShow"
:key="variable"
v-for="(variable, i) in variableNamesToShow"
:key="i"
class="h-8 p-1 m-1 overflow-x-hidden text-white transition-all rounded-md cursor-pointer select-none bg-slate-700 hover:bg-slate-400/20"
@click="chooseVariable(variable)"
>
Expand Down

0 comments on commit c616aad

Please sign in to comment.