diff --git a/src/app/pages/my-bookmarks/my-bookmarks.component.ts b/src/app/pages/my-bookmarks/my-bookmarks.component.ts index abb53033..ee7426bb 100644 --- a/src/app/pages/my-bookmarks/my-bookmarks.component.ts +++ b/src/app/pages/my-bookmarks/my-bookmarks.component.ts @@ -75,7 +75,7 @@ export class MyBookmarksComponent implements OnInit, OnDestroy { .list() .subscribe((dataSpecifications: DataSpecification[]) => { this.openDataSpecifications = [ - ...dataSpecifications.filter((req) => req.status === 'unsent'), + ...dataSpecifications.filter((dataSpecification) => dataSpecification.status === 'unsent'), ]; }); }