File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/cdk-experimental/popover-edit Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 8
8
9
9
import { Injectable , OnDestroy , Self } from '@angular/core' ;
10
10
import { ControlContainer } from '@angular/forms' ;
11
- import { Subject } from 'rxjs' ;
11
+ import { Observable , Subject } from 'rxjs' ;
12
12
import { take } from 'rxjs/operators' ;
13
13
14
14
import { EditEventDispatcher } from './edit-event-dispatcher' ;
@@ -21,7 +21,7 @@ import {EditEventDispatcher} from './edit-event-dispatcher';
21
21
export class EditRef < FormValue > implements OnDestroy {
22
22
/** Emits the final value of this edit instance before closing. */
23
23
private readonly _finalValueSubject = new Subject < FormValue > ( ) ;
24
- readonly finalValue = this . _finalValueSubject . asObservable ( ) ;
24
+ readonly finalValue : Observable < FormValue > = this . _finalValueSubject . asObservable ( ) ;
25
25
26
26
/** The value to set the form back to on revert. */
27
27
private _revertFormValue : FormValue ;
You can’t perform that action at this time.
0 commit comments