Skip to content

Commit

Permalink
Merge branch 'hotfix/0.0.6'
Browse files Browse the repository at this point in the history
  • Loading branch information
anibalsolon committed Nov 12, 2019
2 parents 247735a + 740d7a5 commit 1e195ac
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/containers/pipeline/parts/anatomical/Registration.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class Registration extends Component {
<InputLabel>Resolution</InputLabel>
{

resolution.size ?
resolution.size !== undefined ?

<Grid container>
<Grid item xs={4}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class TemplateRegistration extends Component {
<InputLabel>Functional Resolution</InputLabel>
{

functional_resolution.size ?
functional_resolution.size !== undefined ?

<Grid container>
<Grid item xs={4}>
Expand Down Expand Up @@ -160,7 +160,7 @@ class TemplateRegistration extends Component {
<InputLabel>Derivative Resolution</InputLabel>
{

derivative_resolution.size ?
derivative_resolution.size !== undefined ?

<Grid container>
<Grid item xs={4}>
Expand Down
2 changes: 1 addition & 1 deletion c-pac/pipeline.js
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ export function parse(content) {

c.functional.slice_timing_correction.enabled = config.slice_timing_correction.includes(1)
c.functional.slice_timing_correction.repetition_time = !config.TR || config.TR == "None" ? '' : config.TR
c.functional.slice_timing_correction.pattern = config.slice_timing_pattern == "Use NIFTI Header" ? "pattern" : config.slice_timing_pattern
c.functional.slice_timing_correction.pattern = config.slice_timing_pattern === "Use NIFTI Header" ? "header" : config.slice_timing_pattern

c.functional.slice_timing_correction.first_timepoint = config.startIdx
c.functional.slice_timing_correction.last_timepoint = !config.stopIdx || config.stopIdx == "None" ? '' : config.stopIdx
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Configurable Pipeline for the Analysis of Connectomes",
"homepage": "https://github.com/FCP-INDI/C-PAC_GUI",
"productName": "C-PAC",
"version": "0.0.5",
"version": "0.0.6",
"scripts": {
"build-dll": "cross-env NODE_ENV=development node --trace-warnings -r @babel/register ./node_modules/webpack/bin/webpack --mode development --config config/webpack.config.renderer.dev.dll.js --colors",
"build:electron": "cross-env node --trace-warnings -r @babel/register ./node_modules/webpack/bin/webpack --mode production --config config/webpack.config.main.prod.js --colors",
Expand Down

0 comments on commit 1e195ac

Please sign in to comment.