K
Size: a a a
K
K
VO
VO
VO
K
VO
VO
K
export class ManageConnectionsTableComponent implements OnInit {
public readonly displayedColumns: string[] = ['123', '123t', 'Edit', 'Delete']; // todo i18
public adapter: AdapterViewModel[];
constructor(private route: ActivatedRoute, private cdr: ChangeDetectorRef, private resource: ManageResource) {
}
public ngOnInit() {
let messagesPage = this.route.snapshot.data.ADAPTERS;
console.log(messagesPage);
this.adapter = messagesPage.toArray();
console.log(this.adapter);
this.cdr.detectChanges();
// this.route.snapshot.data.map(data => data.ADAPTERS.toArray()).subscribe(res=> {
// console.log(res);
// this.adapter = res;
// });
}
}
K
VO
K
K
K
VO
K
K
VO
K