Skip to content

Commit

Permalink
fix(VSlideGroup): vertical scroll lock for touch
Browse files Browse the repository at this point in the history
partially implements #10673
  • Loading branch information
ClickerMonkey authored and johnleider committed Jun 6, 2020
1 parent 6168845 commit ce9ef73
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export default VSelect.extend({
if (!this.isSearching || this.noFilter || this.internalSearch == null) return this.allItems

return this.allItems.filter(item => {
const value = getPropertyFromItem(item, this.itemText, undefined)
const value = getPropertyFromItem(item, this.itemText)
const text = value != null ? String(value) : ''

return this.filter(item, String(this.internalSearch), text)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
display: flex
flex: 1 1 auto
overflow: hidden
touch-action: none

// Modifiers
.v-slide-group__next,
Expand Down

0 comments on commit ce9ef73

Please sign in to comment.