Rename the methods
This commit is contained in:
@@ -61,7 +61,7 @@ export class ListOfJumpsComponent implements OnInit {
|
||||
getListOfJumps(pageSize: number = 20, pageIndex: number = 0) {
|
||||
this.isLoading = true;
|
||||
|
||||
this.serviceApi.GetJumps(pageIndex * pageSize, pageIndex * pageSize + pageSize)
|
||||
this.serviceApi.getJumps(pageIndex * pageSize, pageIndex * pageSize + pageSize)
|
||||
.subscribe((data) => {
|
||||
this.dataSourceTable.data = data.rows;
|
||||
setTimeout(() => {
|
||||
@@ -86,7 +86,7 @@ export class ListOfJumpsComponent implements OnInit {
|
||||
|
||||
this.dataSourceTable.data = data;
|
||||
|
||||
this.serviceApi.DeleteJump(item);
|
||||
this.serviceApi.deleteJump(item);
|
||||
this.statsService.resetStats();
|
||||
}
|
||||
|
||||
@@ -96,7 +96,7 @@ export class ListOfJumpsComponent implements OnInit {
|
||||
|
||||
private updateTitle() {
|
||||
this.translateService.get("ListJumps_Title").subscribe((data) => {
|
||||
this.serviceComm.UpdatedComponentTitle(data);
|
||||
this.serviceComm.updatedComponentTitle(data);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user