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 88
99import { Injectable , OnDestroy , Self } from '@angular/core' ;
1010import { ControlContainer } from '@angular/forms' ;
11- import { Subject } from 'rxjs' ;
11+ import { Observable , Subject } from 'rxjs' ;
1212import { take } from 'rxjs/operators' ;
1313
1414import { EditEventDispatcher } from './edit-event-dispatcher' ;
@@ -21,7 +21,7 @@ import {EditEventDispatcher} from './edit-event-dispatcher';
2121export class EditRef < FormValue > implements OnDestroy {
2222 /** Emits the final value of this edit instance before closing. */
2323 private readonly _finalValueSubject = new Subject < FormValue > ( ) ;
24- readonly finalValue = this . _finalValueSubject . asObservable ( ) ;
24+ readonly finalValue : Observable < FormValue > = this . _finalValueSubject . asObservable ( ) ;
2525
2626 /** The value to set the form back to on revert. */
2727 private _revertFormValue : FormValue ;
You can’t perform that action at this time.
0 commit comments