@syncfusion/ej2-gantt 20.2.44 → 20.2.45

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.
@@ -4822,7 +4822,7 @@ class GanttChart {
4822
4822
  * @private
4823
4823
  */
4824
4824
  expandedGanttRow(args) {
4825
- if ((isNullOrUndefined(args['gridRow']) || isNullOrUndefined(args['chartRow'])) && this.parent.enableVirtualization) {
4825
+ if ((isNullOrUndefined(args['gridRow']) && this.parent.enableVirtualization) || isNullOrUndefined(args['chartRow'])) {
4826
4826
  return;
4827
4827
  }
4828
4828
  const record = getValue('data', args);