Skip to content

Commit

Permalink
chore: 2.4.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
adamberecz committed May 31, 2022
1 parent b62a323 commit 1066a94
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 6 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
## v2.4.2

> `2021-05-31`
### 🐞 Bug Fixes
- Hotfix for ES6 [#235](https://github.com/vueform/multiselect/issues/235)
-
## v2.4.1

> `2021-05-31`
### 🐞 Bug Fixes
- Hotfix for SSR [#235](https://github.com/vueform/multiselect/issues/235
- Hotfix for SSR [#235](https://github.com/vueform/multiselect/issues/235)

## v2.4.0

Expand Down
2 changes: 1 addition & 1 deletion dist/multiselect.global.js

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion dist/multiselect.js
Original file line number Diff line number Diff line change
Expand Up @@ -1922,8 +1922,10 @@ function useScroll (props, context, dep)
// =============== HOOKS ================

onMounted(() => {
/* istanbul ignore next */
if (id && id.value && document && document.querySelector) {
label.value = document.querySelector(`[for="${id.value}"]`)?.innerText || null;
let forTag = document.querySelector(`[for="${id.value}"]`);
label.value = forTag ? forTag.innerText : null;
}
});

Expand Down
2 changes: 1 addition & 1 deletion dist/multiselect.vue2.global.js

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion dist/multiselect.vue2.js
Original file line number Diff line number Diff line change
Expand Up @@ -1922,8 +1922,10 @@ function useScroll (props, context, dep)
// =============== HOOKS ================

onMounted(() => {
/* istanbul ignore next */
if (id && id.value && document && document.querySelector) {
label.value = document.querySelector(`[for="${id.value}"]`)?.innerText || null;
let forTag = document.querySelector(`[for="${id.value}"]`);
label.value = forTag ? forTag.innerText : null;
}
});

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.4.1",
"version": "2.4.2",
"private": false,
"description": "Vue 3 multiselect component with single select, multiselect and tagging options.",
"license": "MIT",
Expand Down

0 comments on commit 1066a94

Please sign in to comment.