Skip to content

Commit 1066a94

Browse files
committed
chore: 2.4.2 release
1 parent b62a323 commit 1066a94

6 files changed

+17
-6
lines changed

CHANGELOG.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,16 @@
1+
## v2.4.2
2+
3+
> `2021-05-31`
4+
5+
### 🐞 Bug Fixes
6+
- Hotfix for ES6 [#235](https://github.com/vueform/multiselect/issues/235)
7+
-
18
## v2.4.1
29

310
> `2021-05-31`
411
512
### 🐞 Bug Fixes
6-
- Hotfix for SSR [#235](https://github.com/vueform/multiselect/issues/235
13+
- Hotfix for SSR [#235](https://github.com/vueform/multiselect/issues/235)
714

815
## v2.4.0
916

dist/multiselect.global.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/multiselect.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -1922,8 +1922,10 @@ function useScroll (props, context, dep)
19221922
// =============== HOOKS ================
19231923

19241924
onMounted(() => {
1925+
/* istanbul ignore next */
19251926
if (id && id.value && document && document.querySelector) {
1926-
label.value = document.querySelector(`[for="${id.value}"]`)?.innerText || null;
1927+
let forTag = document.querySelector(`[for="${id.value}"]`);
1928+
label.value = forTag ? forTag.innerText : null;
19271929
}
19281930
});
19291931

dist/multiselect.vue2.global.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/multiselect.vue2.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -1922,8 +1922,10 @@ function useScroll (props, context, dep)
19221922
// =============== HOOKS ================
19231923

19241924
onMounted(() => {
1925+
/* istanbul ignore next */
19251926
if (id && id.value && document && document.querySelector) {
1926-
label.value = document.querySelector(`[for="${id.value}"]`)?.innerText || null;
1927+
let forTag = document.querySelector(`[for="${id.value}"]`);
1928+
label.value = forTag ? forTag.innerText : null;
19271929
}
19281930
});
19291931

package.json

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

0 commit comments

Comments
 (0)