cilog-lib 1.10.25 → 1.10.26

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.
@@ -1024,7 +1024,9 @@ class CilogTableComponent {
1024
1024
  }
1025
1025
  }
1026
1026
  onEditInitCell(event, row, column, value) {
1027
- event.target.select();
1027
+ if (event != null && event.target != null) {
1028
+ event.target.select();
1029
+ }
1028
1030
  this.onEditInit.emit({ row: row, column: column, value: value });
1029
1031
  }
1030
1032
  onRowDoubleClickEvent(row) {