54472: Remove console logs

This commit is contained in:
Kristof De Langhe
2018-09-11 08:31:41 +02:00
parent 79afa38a67
commit 12058cb4db
2 changed files with 0 additions and 2 deletions

View File

@@ -52,7 +52,6 @@ export class CreateCollectionPageComponent {
}))) })))
}); });
this.collectionDataService.create(collection).subscribe((rd: RemoteData<DSpaceObject>) => { this.collectionDataService.create(collection).subscribe((rd: RemoteData<DSpaceObject>) => {
console.log(rd);
if (rd.hasSucceeded) { if (rd.hasSucceeded) {
this.router.navigateByUrl(''); this.router.navigateByUrl('');
} }

View File

@@ -46,7 +46,6 @@ export class CreateCommunityPageComponent {
}))) })))
}); });
this.communityDataService.create(community).pipe(take(1)).subscribe((rd: RemoteData<DSpaceObject>) => { this.communityDataService.create(community).pipe(take(1)).subscribe((rd: RemoteData<DSpaceObject>) => {
console.log(rd);
if (rd.hasSucceeded) { if (rd.hasSucceeded) {
this.router.navigateByUrl(''); this.router.navigateByUrl('');
} }