diff --git a/src/app/components/table/table.component.ts b/src/app/components/table/table.component.ts index 8bdfd16..0f31b61 100644 --- a/src/app/components/table/table.component.ts +++ b/src/app/components/table/table.component.ts @@ -108,7 +108,6 @@ export class TableComponent implements AfterViewInit { ngOnInit() { this.addColumnPropertiesFromGQLSchemaToColumnInfo(); - console.log(this.columnInfo); this.columnInfo.forEach((column) => this.displayedColumns.push(column.dataPath) ); @@ -419,7 +418,6 @@ export class TableComponent implements AfterViewInit { } newFilterValue(): void { - console.log(this.filters); this.filterChanged.next(this.filters); }