Skip to content

Commit

Permalink
Fix touch events on multi-select options
Browse files Browse the repository at this point in the history
  • Loading branch information
wallslide committed Jun 11, 2021
1 parent dc59870 commit a7d2713
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions src/components/FormMode/multi-select/options.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
<template>
<v-chip-group column multiple v-model="selectValue" active-class="primary">
<v-chip-group
column
multiple
v-model="selectValue"
active-class="primary"
class="upil-multi-select-options"
>
<v-chip v-for="{ text, value } in items" :key="value">{{ text }}</v-chip>
</v-chip-group>
</template>
Expand Down Expand Up @@ -69,4 +75,8 @@ export default {
}
</script>

<style></style>
<style scoped>
.upil-multi-select-options >>> .v-slide-group__wrapper {
touch-action: auto !important;
}
</style>

1 comment on commit a7d2713

@vercel
Copy link

@vercel vercel bot commented on a7d2713 Jun 11, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.