Manuel Tauber 2024-02-27 09:16:22 +01:00
parent 446b41a74e
commit 3f0d0318a0
2 changed files with 3 additions and 0 deletions

View File

@ -604,6 +604,7 @@ export class DataService {
*/
public async fetchChanges(reqestParams: any = null){
let stringyfiedData = JSON.stringify(reqestParams);
console.log(reqestParams);
let dataJson = JSON.parse(stringyfiedData) as typeof stringyfiedData;
const promise = new Promise(resolve=>{
let first : boolean = true;

View File

@ -634,6 +634,8 @@ export class NttGanttComponent implements OnInit {
let end = start+ e.pageSize;
this.sliceStart = start;
this.sliceEnd = end;
console.log(this.sliceStart);
console.log(this.sliceEnd);
this.refreshData();
}