Closed ahmedBazzara closed 7 years ago
add this filter to your ngOnInit() function in project-list.component.ts file, to filter the projects that are still open
res => { //console.log(res); this.proList = res.filter((v, k) => { return v.open === 'true'; }); }
add it and comment it for now until we all update the new interfaces, because both me and Ehsan did changes in the interface and the JSON file
add this filter to your ngOnInit() function in project-list.component.ts file, to filter the projects that are still open
res => { //console.log(res); this.proList = res.filter((v, k) => { return v.open === 'true'; }); }