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) { }
|
constructor(private http: Http, private location: LocationService, private logger: Logger) { }
|
||||||
|
|
||||||
private fetchNavigation(): Observable<NavigationViews> {
|
private fetchNavigation(): Observable<NavigationViews> {
|
||||||
const response = this.http.get(navigationPath)
|
const navigationViews = this.http.get(navigationPath)
|
||||||
.map(res => res.json() as NavigationViews)
|
.map(res => res.json() as NavigationViews)
|
||||||
.publishLast();
|
.publishLast();
|
||||||
response.connect();
|
navigationViews.connect();
|
||||||
return response;
|
return navigationViews;
|
||||||
}
|
}
|
||||||
|
|
||||||
private getActiveNodes() {
|
private getActiveNodes() {
|
||||||
|
|
Loading…
Reference in New Issue