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.

master
부모
커밋
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);
}


불러오는 중...
취소
저장