@asd20/ui 3.2.860 → 3.2.861

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
@@ -5,7 +5,7 @@
5
5
  "*.scss",
6
6
  "*.vue"
7
7
  ],
8
- "version": "3.2.860",
8
+ "version": "3.2.861",
9
9
  "private": false,
10
10
  "license": "MIT",
11
11
  "repository": {
@@ -78,11 +78,11 @@ export default {
78
78
  }
79
79
  },
80
80
  handleResize() {
81
- // console.log('attempting to run handleResize from asd20list component')
82
-
83
81
  // Access the Asd20List component
84
82
  const listComponent = this.$refs.listComponent
85
- listComponent.handleResize() // This should call the method in Asd20Viewport
83
+ if (listComponent && listComponent.handleResize) {
84
+ listComponent.handleResize() // Call the resize method from Asd20List
85
+ }
86
86
  },
87
87
  },
88
88