Skip to content

Commit

Permalink
lint: remove unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
caro3801 committed May 30, 2024
1 parent 27337f1 commit 2952c4f
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions lib/components/RangePicker.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,11 @@ import {
toRef
} from 'vue'
import { faGripLinesVertical } from '@fortawesome/free-solid-svg-icons/faGripLinesVertical'
import { clamp, get, has, invoke, round } from 'lodash'
import { clamp, round } from 'lodash'
import Fa, { library } from './Fa'
import type { Variant } from '@/types'
import isEqual from "lodash/isEqual";
type DragDropValue = {detail:number}
/**
* A component to wrap an HTML element with a range picker overlay.
Expand Down Expand Up @@ -272,8 +271,8 @@ export default defineComponent({
}
watch(()=>props.range, (newRange) => {
start.value = newRange[0] ?? 0 ;
end.value = newRange[1] ?? 0;
start.value = newRange[0] ?? 0
end.value = newRange[1] ?? 0
})
return {
Expand Down

0 comments on commit 2952c4f

Please sign in to comment.