File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed
packages/coreui-vue/src/components/dropdown Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ const CDropdown = defineComponent({
24
24
type : [ String , Object ] ,
25
25
default : undefined ,
26
26
required : false ,
27
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
27
28
validator : ( value : string | any ) => {
28
29
if ( value === 'start' || value === 'end' ) {
29
30
return true
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ const CDropdownMenu = defineComponent({
16
16
} ,
17
17
setup ( props , { slots } ) {
18
18
const dropdownMenuRef = inject ( 'dropdownMenuRef' ) as Ref < HTMLElement >
19
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
19
20
const config = inject ( 'config' ) as any
20
21
21
22
const { alignment, dark, popper, visible } = toRefs ( config )
You can’t perform that action at this time.
0 commit comments