@adaptabletools/adaptable-plugin-openfin 15.4.1 → 15.4.3

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": "@adaptabletools/adaptable-plugin-openfin",
3
- "version": "15.4.1",
3
+ "version": "15.4.3",
4
4
  "description": "",
5
5
  "homepage": "http://www.adaptabletools.com/",
6
6
  "author": {
@@ -20,6 +20,6 @@
20
20
  "redux": "4.0.5",
21
21
  "styled-components": "^4.4.1",
22
22
  "tslib": "^2.3.0",
23
- "@adaptabletools/adaptable": "15.4.1"
23
+ "@adaptabletools/adaptable": "15.4.3"
24
24
  }
25
25
  }
@@ -343,7 +343,13 @@ class OpenFinModule extends AdaptableModuleBase_1.AdaptableModuleBase {
343
343
  return;
344
344
  }
345
345
  dataChangedInfos.forEach((info) => {
346
- this.api.gridApi.setCellValue(info.column.columnId, info.newValue, info.primaryKeyValue);
346
+ const cellUpdateRequest = {
347
+ columnId: info.column.columnId,
348
+ newValue: info.newValue,
349
+ primaryKeyValue: info.primaryKeyValue,
350
+ rowNode: info.rowNode,
351
+ };
352
+ this.api.gridApi.setCellValue(cellUpdateRequest);
347
353
  });
348
354
  });
349
355
  });