@eturnity/eturnity_reusable_components 7.33.4-EPDM-11205.0 → 7.33.4-EPDM-11205.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eturnity/eturnity_reusable_components",
3
- "version": "7.33.4-EPDM-11205.0",
3
+ "version": "7.33.4-EPDM-11205.1",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vue-cli-service serve",
@@ -613,7 +613,9 @@
613
613
  if (this.isDropdownOpen) {
614
614
  return this.$refs.dropdown.$el.childElementCount > 1
615
615
  ? this.$refs.dropdown.$el.childElementCount
616
- : this.$refs.dropdown.$el.children[0].childElementCount
616
+ : !!this.$refs.dropdown.$el.children[0]
617
+ ? this.$refs.dropdown.$el.children[0].childElementCount
618
+ : 0
617
619
  }
618
620
 
619
621
  return 0