Skip to content

Commit

Permalink
Close #1424 prevent close on click
Browse files Browse the repository at this point in the history
  • Loading branch information
jtommy committed May 22, 2019
1 parent d53b32e commit bb0d19c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -5,6 +5,7 @@
### New features

* **Update Bulma to 0.7.5**
* #1424 Prevent close on click when ``multiple`` dropdown

### Fixes

Expand Down
4 changes: 3 additions & 1 deletion src/components/dropdown/Dropdown.vue
Expand Up @@ -135,7 +135,9 @@
}
}
this.$emit('input', this.selected)
this.isActive = false
if (!this.multiple) {
this.isActive = false
}
},
/**
Expand Down

0 comments on commit bb0d19c

Please sign in to comment.