We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e174f70 commit 888bd87Copy full SHA for 888bd87
projects/igniteui-angular/src/lib/grids/grid-base.directive.ts
@@ -3404,17 +3404,13 @@ export class IgxGridBaseDirective extends DisplayDensityBase implements
3404
* @remark
3405
* If set, returns the outlet defined outside the grid. Otherwise returns the grid's internal outlet directive.
3406
*/
3407
- @WatchChanges()
3408
@Input()
3409
get outlet() {
3410
return this.resolveOutlet();
3411
}
3412
3413
set outlet(val: IgxOverlayOutletDirective) {
3414
- if (this._userOutletDirective !== val) {
3415
- this._userOutletDirective = val;
3416
- this.notifyChanges(true);
3417
- }
+ this._userOutletDirective = val;
3418
3419
3420
protected resolveOutlet() {
0 commit comments