-
Notifications
You must be signed in to change notification settings - Fork 395
Conversation
src/app/material-docs-app.ts
Outdated
@@ -1,6 +1,6 @@ | |||
import {Component, ViewEncapsulation} from '@angular/core'; | |||
import {Router, NavigationEnd} from '@angular/router'; | |||
import 'rxjs/add/operator/filter'; | |||
import {filter} from 'rxjs/operators'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be imported from rxjs/operators/filter
, otherwise it'll import all the operators. Same goes for all the other rxjs/operators
imports.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good call. Fixed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No comments from me other than what @crisbeto said
@jelbourn - fixed :) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
@amcdnl can you rebase? |
@jelbourn done :) |
This PR switches RXJS usage to lettable operators.