File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -40,14 +40,14 @@ export class MenuStack {
40
40
private readonly _empty : Subject < FocusNext > = new Subject ( ) ;
41
41
42
42
/** Observable which emits the MenuStackItem which has been requested to close. */
43
- readonly close : Observable < MenuStackItem > = this . _close . asObservable ( ) ;
43
+ readonly close : Observable < MenuStackItem > = this . _close ;
44
44
45
45
/**
46
46
* Observable which emits when the MenuStack is empty after popping off the last element. It
47
47
* emits a FocusNext event which specifies the action the closer has requested the listener
48
48
* perform.
49
49
*/
50
- readonly empty : Observable < FocusNext > = this . _empty . asObservable ( ) ;
50
+ readonly empty : Observable < FocusNext > = this . _empty ;
51
51
52
52
/** @param menu the MenuStackItem to put on the stack. */
53
53
push ( menu : MenuStackItem ) {
You can’t perform that action at this time.
0 commit comments