style(aio): rename local variable
This commit is contained in:
parent
0d6aa0caed
commit
b017fbe48e
|
@ -36,11 +36,11 @@ export class NavigationService {
|
|||
constructor(private http: Http, private location: LocationService, private logger: Logger) { }
|
||||
|
||||
private fetchNavigation(): Observable<NavigationViews> {
|
||||
const response = this.http.get(navigationPath)
|
||||
const navigationViews = this.http.get(navigationPath)
|
||||
.map(res => res.json() as NavigationViews)
|
||||
.publishLast();
|
||||
response.connect();
|
||||
return response;
|
||||
navigationViews.connect();
|
||||
return navigationViews;
|
||||
}
|
||||
|
||||
private getActiveNodes() {
|
||||
|
|
Loading…
Reference in New Issue