This commit is contained in:
tiago.kayaya
2022-01-19 16:32:06 +01:00
parent 1ea1723214
commit b11a0c1b9d
3 changed files with 5 additions and 7 deletions
@@ -102,10 +102,9 @@ export class ViewPublicationsPage implements OnInit {
getPublications() {
this.showLoader = true;
const folderId = this.folderId
this.publicationList = new Array();
this.publications.GetPublications(folderId).subscribe(res=> {
this.publicationList = new Array();
res.forEach(element => {
let item: Publication = this.publicationPipe.itemList(element)
this.publicationList.push(item);