frappe-ui 0.1.40 → 0.1.41

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": "frappe-ui",
3
- "version": "0.1.40",
3
+ "version": "0.1.41",
4
4
  "description": "A set of components and utilities for rapid UI development",
5
5
  "main": "./src/index.js",
6
6
  "scripts": {
@@ -98,7 +98,9 @@ const selectable = computed(() => {
98
98
  })
99
99
 
100
100
  let showGroupedRows = computed(() => {
101
- return props.rows.every((row) => row.group)
101
+ return props.rows.every(
102
+ (row) => row.group && row.rows && Array.isArray(row.rows)
103
+ )
102
104
  })
103
105
 
104
106
  function toggleRow(row) {