Skip to content

Commit

Permalink
minor updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Levitas committed Oct 25, 2023
1 parent 02cc842 commit 4ccedc2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ui/src/Finalize.vue
Original file line number Diff line number Diff line change
Expand Up @@ -222,12 +222,12 @@ export default defineComponent({
sendBrainlife(pipeline?: 'DWI') {
const pipelineString = pipeline ? `&pipeline=${pipeline}` : '';
window.open(`https://brainlife.io/projects#ezbids=${this.session._id}${pipelineString}`);
window.open(`https://brainlife.io/projects#ezbids=${this.session._id}${pipelineString}`, `_brainlife.${this.session._id}`);
},
sendOpenneuro() {
const url = this.config.apihost+'/download/'+this.session._id+'/bids/'+this.ezbids.datasetDescription.Name;
const fullurl = new URL(url, document.baseURI).href;
const fullurl = new URL(url, document.baseURI).href;
window.open("https://openneuro.org/import?url="+encodeURI(fullurl));
},
Expand Down
2 changes: 1 addition & 1 deletion ui/src/libUnsafe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1315,7 +1315,7 @@ export function fileLogicLink($root:IEzbids, o:IObject) {
}
}

//func/events are implicitly linked to a func/bold; make sure these have same entities and exclusion criteria
// func/events are implicitly linked to a func/bold; make sure these have same entities and exclusion criteria
if(o._type === "func/events") {
let correspondingFuncBold = $root.objects.filter((object:IObject)=>object._type === "func/bold" &&
!object._exclude &&
Expand Down

0 comments on commit 4ccedc2

Please sign in to comment.