Skip to content

Commit

Permalink
Update src/app/pages/my-bookmarks/my-bookmarks.component.ts
Browse files Browse the repository at this point in the history
Co-authored-by: CristianGimenez <[email protected]>
  • Loading branch information
abwilson23 and CristianGimenez authored Mar 31, 2023
1 parent 66524fa commit 50bc535
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/pages/my-bookmarks/my-bookmarks.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'),
];
});
}
Expand Down

0 comments on commit 50bc535

Please sign in to comment.