4513e8b263
ng linted modifier categories list is better at displaying data sanely now
23 lines
548 B
TypeScript
23 lines
548 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
import { ActivatedRoute } from '@angular/router';
|
|
import { Table } from '../../core/table';
|
|
|
|
@Component({
|
|
selector: 'app-running-tables',
|
|
templateUrl: './running-tables.component.html',
|
|
styleUrls: ['./running-tables.component.css']
|
|
})
|
|
export class RunningTablesComponent implements OnInit {
|
|
list: Table[];
|
|
|
|
constructor(private route: ActivatedRoute) {
|
|
}
|
|
|
|
ngOnInit() {
|
|
this.route.data
|
|
.subscribe((data: { list: Table[] }) => {
|
|
this.list = data.list;
|
|
});
|
|
}
|
|
}
|