Skip to content

Commit 888bd87

Browse files
committed
chore(*): remove watch/notify changes
(cherry picked from commit 1c5bfb1) (cherry picked from commit 9e06c32)
1 parent e174f70 commit 888bd87

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

projects/igniteui-angular/src/lib/grids/grid-base.directive.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3404,17 +3404,13 @@ export class IgxGridBaseDirective extends DisplayDensityBase implements
34043404
* @remark
34053405
* If set, returns the outlet defined outside the grid. Otherwise returns the grid's internal outlet directive.
34063406
*/
3407-
@WatchChanges()
34083407
@Input()
34093408
get outlet() {
34103409
return this.resolveOutlet();
34113410
}
34123411

34133412
set outlet(val: IgxOverlayOutletDirective) {
3414-
if (this._userOutletDirective !== val) {
3415-
this._userOutletDirective = val;
3416-
this.notifyChanges(true);
3417-
}
3413+
this._userOutletDirective = val;
34183414
}
34193415

34203416
protected resolveOutlet() {

0 commit comments

Comments
 (0)