Skip to content
Snippets Groups Projects
Commit b9bae419 authored by Giuseppe Digilio's avatar Giuseppe Digilio
Browse files

Removed console.log

parent 433faf93
No related branches found
No related tags found
No related merge requests found
......@@ -194,10 +194,8 @@ export class SubmissionSectionUploadComponent extends SectionModelComponent {
mapGroups$.push(
this.groupService.findById(accessCondition.selectGroupUUID).pipe(
find((rd: RemoteData<Group>) => !rd.isResponsePending && rd.hasSucceeded),
tap((group: RemoteData<Group>) => console.log(group.payload.groups)),
flatMap((group: RemoteData<Group>) => group.payload.groups),
find((rd: RemoteData<PaginatedList<Group>>) => !rd.isResponsePending && rd.hasSucceeded),
tap((group) => console.log(group)),
map((rd: RemoteData<PaginatedList<Group>>) => ({
accessCondition: accessCondition.name,
groups: rd.payload.page
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment