[no issue number] fix unsubscribing in documentlist (#2740)

* fix unsubscribing in documentlist

* fix tslint errors
This commit is contained in:
Eugenio Romano
2017-11-27 17:51:18 +00:00
committed by GitHub
parent 6843a6adfd
commit 9b7e018f93
32 changed files with 180 additions and 148 deletions

View File

@@ -30,7 +30,7 @@ describe('HomeComponent', () => {
});
it ('should work', () => {
let fixture = TestBed.createComponent(HomeComponent);
const fixture = TestBed.createComponent(HomeComponent);
expect(fixture.componentInstance instanceof HomeComponent).toBe(true, 'should create HomeComponent');
});
});

View File

@@ -18,7 +18,7 @@
import { Component } from '@angular/core';
@Component({
selector: 'home-view',
selector: 'app-home-view',
templateUrl: './home.component.html',
styleUrls: ['./home.component.scss']
})