()
| 109 | _isEditing = false; |
| 110 | |
| 111 | constructor() { |
| 112 | super(); |
| 113 | |
| 114 | this.role = 'row'; |
| 115 | this._onBlur.pipe(takeUntil(this.destroyed)).subscribe(() => { |
| 116 | if (this._isEditing && !this._editStartPending) { |
| 117 | this._onEditFinish(); |
| 118 | } |
| 119 | this._alreadyFocused = false; |
| 120 | }); |
| 121 | } |
| 122 | |
| 123 | override ngAfterViewInit() { |
| 124 | super.ngAfterViewInit(); |
nothing calls this directly
no test coverage detected