@fto-consult/expo-ui 6.77.2 → 6.77.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": "@fto-consult/expo-ui",
3
- "version": "6.77.2",
3
+ "version": "6.77.4",
4
4
  "description": "Bibliothèque de composants UI Expo,react-native",
5
5
  "main": "main",
6
6
  "scripts": {
@@ -371,7 +371,7 @@ export default class CommonDatagridComponent extends AppComponent {
371
371
  const s = isObj(row) && row.isSectionListHeader !== true ? true : false;
372
372
  if(!s) return false;
373
373
  if(typeof this.props.isRowSelectable =='function'){
374
- return !!this.isRowSelected({row,rowData:row,context:this});
374
+ return !!this.props.isRowSelectable({row,rowData:row,context:this});
375
375
  }
376
376
  return true;
377
377
  }