Fix de style

+ diminution à 500ms de wait sur l'affichage
des datas pour les tableaux
This commit is contained in:
Sébastien André
2020-04-01 19:59:45 +02:00
parent 5c961f8f3d
commit 888903cef1
6 changed files with 24 additions and 24 deletions

View File

@@ -52,7 +52,7 @@ export class ListOfDzsComponent implements OnInit {
this.dataSourceTable = new MatTableDataSource<DropZoneResp>(data);
this.dataSourceTable.paginator = this.paginator;
this.resultsLength = data.length;
}, 2000);
}, 500);
});
}