Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export class BulkActionDialogComponent implements OnInit {
this.adminService.deleteStagedRecord(toSend).subscribe(response => {
this.successful = true;
this.loading = false;
console.log(response);
// console.log(response);
}, error => {
console.log(error);
this.successful = true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ ngOnInit() {
formData.append('file', this.uploadForm.get('file').value);
formData.append('file-type', this.fileType);
this.adminService.postAdapterFile(formData, this.adapterKey).pipe(take(1)).subscribe(response => {
console.log(response);
// console.log(response);
this.loadingService.setLoading(false);
this.step = 3;
this.postResp = response;
Expand Down
2 changes: 2 additions & 0 deletions src/app/core/facets-manager/facets-manager.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -391,6 +391,7 @@ export class FacetsManagerComponent implements OnInit, OnDestroy, AfterViewInit
newFacets.unshift(newFacets.splice(position, 1)[0]);
}
});

this.facets = newFacets;
this.setShowAdvancedFacetStates();
this.facetsLoaded.emit(this.facets.length);
Expand Down Expand Up @@ -742,6 +743,7 @@ export class FacetsManagerComponent implements OnInit, OnDestroy, AfterViewInit
data.view = 'single';
data['activeName'] = list.split(':')[1];
}

const dialogRef = this.dialog.open(UserQueryListDialogComponent, {
width: '850px',
autoFocus: false,
Expand Down
2 changes: 1 addition & 1 deletion src/app/core/pwd-recovery/pwd-recovery.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export class PwdRecoveryComponent implements OnInit {
private dialogRef: MatDialogRef<PwdRecoveryComponent>,
@Optional() @Inject(MAT_DIALOG_DATA) public data: string
) {
console.log('data:::', data);
// console.log('data:::', data);
}

ngOnInit(): void {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,4 +137,5 @@ export class ReferenceFormComponent implements OnInit, AfterViewInit, OnDestroy
window.open(url);
}


}
2 changes: 1 addition & 1 deletion src/app/core/substance-form/substance-form.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1316,4 +1316,4 @@ mergeConcept() {


}
}
}
3 changes: 1 addition & 2 deletions src/app/core/substance-form/substance-form.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2084,5 +2084,4 @@ interface TestSequence {
subsections?: Array<any>;
subgroups?: Array<any>;
subunits?: Array<SequenceUnit>;
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
<button class = "mat-button" *ngIf = "selectedList" (click) = "addToList()" color = "primary">Add</button>

</span>

<span style = "margin-right:50px;" >
<button class = "mat-button" *ngIf = "canCreate || isAdmin" (click) = "createList()" color = "primary">New List</button>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ openMessageDialog(message: string) {
let exists = false;
let toPut = "";
this.bulkSearchService.getSingleBulkSearchList(this.selectedList).subscribe(record => {
console.log(record);
// console.log(record);
record.lists.forEach(entry =>{
if (entry.key === this.privateSubstance.uuid) {
exists = true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ export class SubstancesBrowseComponent implements OnInit, AfterViewInit, OnDestr

fetchBulkLists() {
this.bulkSearchService.getBulkSearchLists().subscribe(result => {
console.log(result);
// console.log(result);
}, error => {
console.log(error);
});
Expand Down