Skip to content

Commit

Permalink
models added to the bottom to the review basket geneontology/noctua-a…
Browse files Browse the repository at this point in the history
  • Loading branch information
tmushayahama committed Dec 7, 2020
1 parent 3122bfb commit 5b70950
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/@noctua.form/services/cams.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -230,9 +230,9 @@ export class CamsService {

private _compareDateReviewAdded(a: Cam, b: Cam): number {
if (a.dateReviewAdded > b.dateReviewAdded) {
return -1;
} else {
return 1;
} else {
return -1;
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/app/main/apps/noctua-form/noctua-form.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ import { MatTreeModule } from '@angular/material/tree';

const routes = [
{
path: '',
path: 'f',
component: NoctuaFormComponent
}
];
Expand Down
2 changes: 1 addition & 1 deletion src/app/main/apps/noctua-search/noctua-search.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { CamsReviewChangesComponent } from './cams/cams-review-changes/cams-revi

const routes = [
{
path: 's',
path: '',
component: NoctuaSearchComponent
}
];
Expand Down
2 changes: 1 addition & 1 deletion src/environments/environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ declare var global_golr_server: any;
declare var global_workbenches_universal: any;
declare var global_workbenches_model: any;

const baristaLocation = typeof global_barista_location !== 'undefined' ? global_barista_location : 'http://localhost:3400';
const baristaLocation = typeof global_barista_location !== 'undefined' ? global_barista_location : 'http://barista-dev.berkeleybop.org';
const minervaDefinitionName = typeof global_minerva_definition_name !== 'undefined' ? global_minerva_definition_name : 'minerva_public_dev';
const golrNeoServer = typeof global_golr_neo_server !== 'undefined'
? global_golr_neo_server
Expand Down

0 comments on commit 5b70950

Please sign in to comment.