Skip to content

Commit

Permalink
fix: multi select user filter (#958)
Browse files Browse the repository at this point in the history
Co-authored-by: Lee Chase <lee.chase@uk.ibm.com>
  • Loading branch information
lee-chase and lee-chase authored Jul 24, 2020
1 parent 136610e commit 5c03407
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Canary

- fix: Multiselect filter tag usage (causing validator warning)
- fix: Combobox and multiselect user filter for non-existent item

## 2.29.0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ export default {
this.updateOptions();
},
checkHighlightPosition(newHiglight) {
if (this.$refs.list && this.$refs.option) {
if (this.$refs.list && this.$refs.option && this.$refs.option[newHiglight]) {
if (this.$refs.list.scrollTop > this.$refs.option[newHiglight].offsetTop) {
this.$refs.list.scrollTop = this.$refs.option[newHiglight].offsetTop;
} else if (
Expand Down

0 comments on commit 5c03407

Please sign in to comment.