This commit is contained in:
_Bastler 2021-05-07 11:37:22 +02:00
parent e144a012b5
commit ea5ea6324e

View File

@ -18,7 +18,7 @@ export class ServicesComponent implements OnInit {
ngOnInit(): void {
this.serviceService.services().subscribe((data: any) => {
this.services = data;
this.sortData({"active": "name", "direction": "desc"});
this.sortData({"active": "name", "direction": "asc"});
})
}