@visns-studio/visns-components 2.3.7 → 2.3.9

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.
@@ -352,7 +352,10 @@ const DataGrid = forwardRef(
352
352
  cellElement.parentNode.children
353
353
  ).indexOf(cellElement);
354
354
 
355
- if (columnIndex === rowProps.columns.length - 1) {
355
+ if (
356
+ rowProps.columns.length > 1 &&
357
+ columnIndex === rowProps.columns.length - 1
358
+ ) {
356
359
  // Handle last column click
357
360
  } else {
358
361
  const column = rowProps.columns[columnIndex];
@@ -390,7 +393,13 @@ const DataGrid = forwardRef(
390
393
  'width=1440,height=1024,menubar=1,resizable=1,status=1,titlebar=1,toolbar=1'
391
394
  );
392
395
  } else {
393
- modalOpen('update', rowProps.data[form.primaryKey]);
396
+ const updateSetting = settings.find(
397
+ (setting) => setting.id === 'update'
398
+ );
399
+
400
+ if (updateSetting) {
401
+ modalOpen('update', rowProps.data[form.primaryKey]);
402
+ }
394
403
  }
395
404
  }
396
405
  }, []);
package/package.json CHANGED
@@ -42,7 +42,7 @@
42
42
  "react-dom": "^17.0.1"
43
43
  },
44
44
  "name": "@visns-studio/visns-components",
45
- "version": "2.3.7",
45
+ "version": "2.3.9",
46
46
  "description": "Various packages to assist in the development of our Custom Applications.",
47
47
  "main": "index.js",
48
48
  "scripts": {