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!
ソースを参照

Pass undefined workflow params as null.

pull/1/head
コミット
de3985b007
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      frontend/src/js/page/wb-launch-workflow-page.js

+ 1
- 1
frontend/src/js/page/wb-launch-workflow-page.js ファイルの表示

@@ -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);
}


読み込み中…
キャンセル
保存