@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.
- package/CHANGELOG.md +8 -0
- package/dist/ej2-gantt.umd.min.js +2 -2
- package/dist/ej2-gantt.umd.min.js.map +1 -1
- package/dist/es6/ej2-gantt.es2015.js +1 -1
- package/dist/es6/ej2-gantt.es2015.js.map +1 -1
- package/dist/es6/ej2-gantt.es5.js +1 -1
- package/dist/es6/ej2-gantt.es5.js.map +1 -1
- package/dist/global/ej2-gantt.min.js +2 -2
- package/dist/global/ej2-gantt.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +18 -18
- package/src/gantt/base/gantt-chart.js +1 -1
|
@@ -4822,7 +4822,7 @@ class GanttChart {
|
|
|
4822
4822
|
* @private
|
|
4823
4823
|
*/
|
|
4824
4824
|
expandedGanttRow(args) {
|
|
4825
|
-
if ((isNullOrUndefined(args['gridRow']) || isNullOrUndefined(args['chartRow']))
|
|
4825
|
+
if ((isNullOrUndefined(args['gridRow']) && this.parent.enableVirtualization) || isNullOrUndefined(args['chartRow'])) {
|
|
4826
4826
|
return;
|
|
4827
4827
|
}
|
|
4828
4828
|
const record = getValue('data', args);
|