@budibase/frontend-core 3.7.2 → 3.7.4

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": "@budibase/frontend-core",
3
- "version": "3.7.2",
3
+ "version": "3.7.4",
4
4
  "description": "Budibase frontend core libraries used in builder and client",
5
5
  "author": "Budibase",
6
6
  "license": "MPL-2.0",
@@ -17,5 +17,5 @@
17
17
  "shortid": "2.2.15",
18
18
  "socket.io-client": "^4.7.5"
19
19
  },
20
- "gitHead": "061ecb08671c025e1e9b1f3928fdc7a06f6d811e"
20
+ "gitHead": "ce3a08a254779376de9dce7a6e121528e324a54e"
21
21
  }
@@ -82,8 +82,9 @@ export const deriveStores = (context: StoreContext): ConfigDerivedStore => {
82
82
  config.canEditColumns = false
83
83
  }
84
84
 
85
- // Determine if we can select rows
86
- config.canSelectRows = !!config.canDeleteRows || !!config.canAddRows
85
+ // Determine if we can select rows. Always true in the meantime as you can
86
+ // use the selected rows binding regardless of readonly state.
87
+ config.canSelectRows = true
87
88
 
88
89
  return config
89
90
  }