@worktile/gantt 20.0.0-next.1 → 20.0.0

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.
@@ -530,7 +530,7 @@ class GanttDomService {
530
530
  getResizeByElement(element) {
531
531
  return new Observable((observer) => {
532
532
  const resizeObserver = new ResizeObserver(() => {
533
- observer.next();
533
+ observer.next(null);
534
534
  });
535
535
  resizeObserver.observe(element);
536
536
  });