Bills initially working just as proof of concept
ng linted modifier categories list is better at displaying data sanely now
This commit is contained in:
@ -2,12 +2,12 @@ import { Component, OnInit, ViewChild } from '@angular/core';
|
||||
import { TableListDataSource } from './table-list-datasource';
|
||||
import { Table } from '../../core/table';
|
||||
import { ActivatedRoute, Router } from '@angular/router';
|
||||
import { MatTable } from "@angular/material";
|
||||
import { MenuCategory } from "../../core/menu-category";
|
||||
import { BehaviorSubject } from "rxjs";
|
||||
import { CdkDragDrop, moveItemInArray } from "@angular/cdk/drag-drop";
|
||||
import { ToasterService } from "../../core/toaster.service";
|
||||
import { TableService } from "../table.service";
|
||||
import { MatTable } from '@angular/material';
|
||||
import { MenuCategory } from '../../core/menu-category';
|
||||
import { BehaviorSubject } from 'rxjs';
|
||||
import { CdkDragDrop, moveItemInArray } from '@angular/cdk/drag-drop';
|
||||
import { ToasterService } from '../../core/toaster.service';
|
||||
import { TableService } from '../table.service';
|
||||
|
||||
@Component({
|
||||
selector: 'app-table-list',
|
||||
@ -31,7 +31,7 @@ export class TableListComponent implements OnInit {
|
||||
this.data = new BehaviorSubject([]);
|
||||
this.data.subscribe((data: Table[]) => {
|
||||
this.list = data;
|
||||
})
|
||||
});
|
||||
}
|
||||
|
||||
ngOnInit() {
|
||||
|
||||
Reference in New Issue
Block a user