diff --git a/CHANGELOG.md b/CHANGELOG.md index eac9c236f..e17c050db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ ### New features * **Update Bulma to 0.7.5** +* #1424 Prevent close on click when ``multiple`` dropdown ### Fixes diff --git a/src/components/dropdown/Dropdown.vue b/src/components/dropdown/Dropdown.vue index b049c58bc..bb4bd1a7d 100644 --- a/src/components/dropdown/Dropdown.vue +++ b/src/components/dropdown/Dropdown.vue @@ -135,7 +135,9 @@ } } this.$emit('input', this.selected) - this.isActive = false + if (!this.multiple) { + this.isActive = false + } }, /**