Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2028,7 +2028,7 @@ export abstract class IgxGridBaseComponent extends DisplayDensityBase implements
* @hidden
*/
@ViewChildren(IgxTemplateOutletDirective, { read: IgxTemplateOutletDirective })
public tmpOutlets: QueryList<any>;
public tmpOutlets: QueryList<any> = new QueryList<any>();


/**
Expand Down Expand Up @@ -2784,7 +2784,7 @@ export abstract class IgxGridBaseComponent extends DisplayDensityBase implements
protected _allowAdvancedFiltering = false;
protected _filterMode = FilterMode.quickFilter;

protected observer: ResizeObserver;
protected observer: ResizeObserver = new ResizeObserver(() => {});

protected resizeNotify = new Subject();

Expand Down