Skip to content

Commit 83de420

Browse files
author
yaroslav8765
committed
fix: fix select component
1 parent d4e24e6 commit 83de420

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

adminforth/spa/src/afcl/Select.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<div class="afcl-select-wrapper relative inline-block" ref="internalSelect"
2+
<div class="afcl-select afcl-select-wrapper relative inline-block" ref="internalSelect"
33
:class="{'opacity-50': readonly}"
44
>
55
<div class="relative">
@@ -10,7 +10,7 @@
1010
v-model="search"
1111
@click="inputClick"
1212
@input="inputInput"
13-
class="afcl-select block w-full pl-3 pr-10 py-2.5 border border-gray-300 rounded-md leading-5 bg-gray-50 placeholder-gray-500 sm:text-sm transition duration-150 ease-in-out dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white focus:ring-lightPrimary focus:border-lightPrimary dark:focus:ring-darkPrimary dark:focus:border-darkPrimary"
13+
class="block w-full pl-3 pr-10 py-2.5 border border-gray-300 rounded-md leading-5 bg-gray-50 placeholder-gray-500 sm:text-sm transition duration-150 ease-in-out dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white focus:ring-lightPrimary focus:border-lightPrimary dark:focus:ring-darkPrimary dark:focus:border-darkPrimary"
1414
autocomplete="off" data-custom="no-autofill"
1515
:placeholder="
1616
selectedItems.length && !multiple ? '' : (showDropdown ? $t('Search') : placeholder || $t('Select...'))

0 commit comments

Comments
 (0)