Skip to content

Commit

Permalink
fix: remove unwanted output line (#242)
Browse files Browse the repository at this point in the history
  • Loading branch information
reeves999999 authored Dec 7, 2023
1 parent 6aeffe2 commit e1c3316
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions src/components/Listbox/Listbox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
v-slot="{ open }"
class="concrete__listbox"
>
{{ selectedValue }}
<div :class="['relative', disabledClass]">
<div class="inline-flex w-full">
<div
Expand All @@ -40,7 +39,7 @@
inputColorClass,
mergedSizeClass,
cursorClass,
open && 'ring-1 border-indigo-light'
open && 'ring-1 border-indigo-light',
]"
class="!flex items-center"
>
Expand Down Expand Up @@ -92,7 +91,11 @@
outline-none
overflow-y-auto
"
:class="[optionsSizeClass, maxOptionsHeightClass, getOptionsClass()]"
:class="[
optionsSizeClass,
maxOptionsHeightClass,
getOptionsClass(),
]"
>
<ListboxOption
as="template"
Expand All @@ -104,11 +107,9 @@
>
<li
:class="[
option.disabled
? 'text-opacity-50'
: 'cursor-pointer',
option.disabled ? 'text-opacity-50' : 'cursor-pointer',
'select-none relative py-2 px-3 text-black',
active && 'bg-steel-light'
active && 'bg-steel-light',
]"
>
<div
Expand Down

0 comments on commit e1c3316

Please sign in to comment.