@trudb/tru-common-lib 0.2.555 → 0.2.556

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.
@@ -7001,7 +7001,7 @@ class TruDataGridCellRenderer {
7001
7001
  init(params) {
7002
7002
  params.eGridCell.innerHTML = '';
7003
7003
  const value = params.value ?? '';
7004
- if (params.colDef.cellEditor && params.colDef.cellEditor.name === "StdRichTextList") {
7004
+ if (params.renderRichText === true) {
7005
7005
  var p = document.createElement('div');
7006
7006
  p.innerHTML = value;
7007
7007
  params.eGridCell.appendChild(p);