This commit is contained in:
Sercan Yemen 2017-10-31 10:08:04 +03:00
commit 5574e3f729

View File

@ -21,7 +21,7 @@ export class FuseNgxDatatableComponent implements OnInit
{
this.http.get('api/contacts-contacts')
.subscribe((contacts: any) => {
this.rows = contacts.data;
this.rows = contacts;
this.loadingIndicator = false;
});
}