Skip to content

Commit 8c3d3d8

Browse files
committed
chore: build, version, cl
1 parent 5cb9ee4 commit 8c3d3d8

File tree

6 files changed

+12
-5
lines changed

6 files changed

+12
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## v2.5.6
2+
3+
> `2022-09-28`
4+
5+
### 🐞 Bug Fixes
6+
- Async options resolve fix [#266](https://github.com/vueform/multiselect/issues/266).
7+
18
## v2.5.5
29

310
> `2022-09-26`

dist/multiselect.global.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/multiselect.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -943,7 +943,7 @@ function useOptions (props, context, dep)
943943

944944
watch(options, (n, o) => {
945945
if (typeof props.options === 'function') {
946-
if (resolveOnLoad.value) {
946+
if (resolveOnLoad.value && (!o || (n && n.toString() !== o.toString()))) {
947947
resolveOptions();
948948
}
949949
} else {

dist/multiselect.vue2.global.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/multiselect.vue2.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -943,7 +943,7 @@ function useOptions (props, context, dep)
943943

944944
watch(options, (n, o) => {
945945
if (typeof props.options === 'function') {
946-
if (resolveOnLoad.value) {
946+
if (resolveOnLoad.value && (!o || (n && n.toString() !== o.toString()))) {
947947
resolveOptions();
948948
}
949949
} else {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vueform/multiselect",
3-
"version": "2.5.5",
3+
"version": "2.5.6",
44
"private": false,
55
"description": "Vue 3 multiselect component with single select, multiselect and tagging options.",
66
"license": "MIT",

0 commit comments

Comments
 (0)