[ADF-2005] Cannot view document in tasklist attachment list (#2701)

This commit is contained in:
Eugenio Romano
2017-11-23 14:05:13 +00:00
committed by GitHub
parent 9bc99665ef
commit bc48a3923e
28 changed files with 128 additions and 133 deletions

View File

@@ -20,7 +20,7 @@ import { ActivatedRoute, Router } from '@angular/router';
import { AlfrescoApiService } from '@alfresco/adf-core';
@Component({
selector: 'adf-file-view',
selector: 'app-file-view',
templateUrl: 'file-view.component.html'
})
export class FileViewComponent implements OnInit {
@@ -33,6 +33,10 @@ export class FileViewComponent implements OnInit {
private apiService: AlfrescoApiService) {}
ngOnInit() {
this.route
.data
.subscribe(v => console.log(v));
this.route.params.subscribe(params => {
const id = params.nodeId;
if (id) {