Skip to content

Commit

Permalink
disable tooltip if displayed on small display
Browse files Browse the repository at this point in the history
  • Loading branch information
jedi-of-the-sea committed Aug 1, 2024
1 parent 5ceb509 commit be79217
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/plugins/Zoom/src/components/Zoom.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,11 @@
<v-tooltip left :disabled="hasSmallDisplay">
<template #activator="{ on, attrs }">
<div v-bind="attrs" v-on="on">
<ZoomSlider v-if="addZoomSlider"></ZoomSlider>
<ZoomSlider
v-if="addZoomSlider"
left
:disabled="hasSmallDisplay"
></ZoomSlider>
</div>
</template>
<span>{{ $t('common:plugins.zoom.slider') }}</span>
Expand Down

0 comments on commit be79217

Please sign in to comment.