Skip to content

Commit

Permalink
fix: range slider minor bug
Browse files Browse the repository at this point in the history
  • Loading branch information
tarikmehinagic committed Dec 4, 2023
1 parent c6f3775 commit 13906fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/RangeSlider/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ const onBlur = () => {
};
const onExternalClick = (e) => {
if (!slider.value.contains(e.target)) {
if (!slider.value?.contains(e.target)) {
onBlur();
}
};
Expand Down

0 comments on commit 13906fa

Please sign in to comment.