Skip to content

Commit

Permalink
Fix test slots
Browse files Browse the repository at this point in the history
  • Loading branch information
alvarodE committed Apr 25, 2024
1 parent e644bea commit ca9c544
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<template>
<SortList :items="sortValues">
<template #default="{ item, isHighlighted, isSelected }">
<template #default="{ item, isSelected }">
<span v-if="isSelected">✅</span>
<span v-if="isHighlighted">🟢</span>
{{ item }}
</template>
</SortList>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<template>
<SortPickerList :items="sortValues">
<template #default="{ item, isHighlighted, isSelected }">
<template #default="{ item, isSelected }">
<span v-if="isSelected">✅</span>
<span v-if="isHighlighted">🟢</span>
{{ item }}
</template>
</SortPickerList>
Expand Down

0 comments on commit ca9c544

Please sign in to comment.