IF YOU WOULD LIKE TO GET AN ACCOUNT, please write an email to s dot adaszewski at gmail dot com. User accounts are meant only to report issues and/or generate pull requests. This is a purpose-specific Git hosting for ADARED projects. Thank you for your understanding!
Browse Source

Pass undefined workflow params as null.

pull/1/head
parent
commit
de3985b007
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      frontend/src/js/page/wb-launch-workflow-page.js

+ 1
- 1
frontend/src/js/page/wb-launch-workflow-page.js View File

@@ -215,7 +215,7 @@ class WBLaunchWorkflowPage extends Component {
const { isFile } = inputSpecInfo(main.inputs.find(a => (a.id === k)));
val = uuidsToCwl(val, isFile);
k = k.split('/').slice(1).join('/');
inputs[k] = val;
inputs[k] = (val === undefined ? null : val);
} catch (exc) {
errors.push('Error parsing ' + k + ': ' + exc.message);
}


Loading…
Cancel
Save