Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…omScrollbar into main
  • Loading branch information
Simon Erslev Milfred committed Oct 17, 2023
2 parents 1fe1999 + 60c8a5f commit ca343c8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion components/CustomScrollbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,9 @@ const targetData = ref({
});
const isVisible = computed(() => {
return (props.ariaControls && targetData.value.canScroll) || props.persistent;
return (
(props.ariaControls && targetData.value.canScroll) || props.persistent
);
});
defineExpose({
Expand Down

0 comments on commit ca343c8

Please sign in to comment.