@adaptabletools/adaptable-plugin-openfin 19.0.1 → 19.0.2

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": "19.0.1",
3
+ "version": "19.0.2",
4
4
  "description": "",
5
5
  "homepage": "http://www.adaptabletools.com/",
6
6
  "author": {
@@ -18,7 +18,7 @@
18
18
  "redux": "4.0.5",
19
19
  "styled-components": "^4.4.1",
20
20
  "tslib": "^2.3.0",
21
- "@adaptabletools/adaptable": "19.0.1"
21
+ "@adaptabletools/adaptable": "19.0.2"
22
22
  },
23
23
  "type": "module",
24
24
  "module": "src/index.js"
@@ -182,12 +182,6 @@ export class OpenFinModule extends AdaptableModuleBase {
182
182
  return reject(msg);
183
183
  // return resolve({ ignore: true });
184
184
  }
185
- else if (!this.adaptable.isCellEditable(rowNode, this.adaptable.api.columnApi.internalApi.getAgGridColumnForAdaptableColumn(columnId))) {
186
- const msg = `Can't update column cell in ${columnId} as it is read-only`;
187
- this.adaptable.logger.warn(msg);
188
- return reject(msg);
189
- // return resolve({ ignore: true });
190
- }
191
185
  const cellDataChangedInfo = this.api.internalApi.buildDataChangedInfo({
192
186
  oldValue,
193
187
  newValue,