Skip to content

Commit

Permalink
chore: build, version, cl
Browse files Browse the repository at this point in the history
  • Loading branch information
adamberecz committed Sep 28, 2022
1 parent 5cb9ee4 commit 8c3d3d8
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## v2.5.6

> `2022-09-28`
### 🐞 Bug Fixes
- Async options resolve fix [#266](https://github.com/vueform/multiselect/issues/266).

## v2.5.5

> `2022-09-26`
Expand Down
2 changes: 1 addition & 1 deletion dist/multiselect.global.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/multiselect.js
Original file line number Diff line number Diff line change
Expand Up @@ -943,7 +943,7 @@ function useOptions (props, context, dep)

watch(options, (n, o) => {
if (typeof props.options === 'function') {
if (resolveOnLoad.value) {
if (resolveOnLoad.value && (!o || (n && n.toString() !== o.toString()))) {
resolveOptions();
}
} else {
Expand Down
2 changes: 1 addition & 1 deletion dist/multiselect.vue2.global.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/multiselect.vue2.js
Original file line number Diff line number Diff line change
Expand Up @@ -943,7 +943,7 @@ function useOptions (props, context, dep)

watch(options, (n, o) => {
if (typeof props.options === 'function') {
if (resolveOnLoad.value) {
if (resolveOnLoad.value && (!o || (n && n.toString() !== o.toString()))) {
resolveOptions();
}
} else {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vueform/multiselect",
"version": "2.5.5",
"version": "2.5.6",
"private": false,
"description": "Vue 3 multiselect component with single select, multiselect and tagging options.",
"license": "MIT",
Expand Down

0 comments on commit 8c3d3d8

Please sign in to comment.