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({
2424 type : [ String , Object ] ,
2525 default : undefined ,
2626 required : false ,
27+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
2728 validator : ( value : string | any ) => {
2829 if ( value === 'start' || value === 'end' ) {
2930 return true
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ const CDropdownMenu = defineComponent({
1616 } ,
1717 setup ( props , { slots } ) {
1818 const dropdownMenuRef = inject ( 'dropdownMenuRef' ) as Ref < HTMLElement >
19+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
1920 const config = inject ( 'config' ) as any
2021
2122 const { alignment, dark, popper, visible } = toRefs ( config )
You can’t perform that action at this time.
0 commit comments