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!
소스 검색

Fix in parseKeepRef.

pull/1/head
부모
커밋
80429683e9
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      frontend/src/js/arvados/process/wb-process-misc.js

+ 1
- 1
frontend/src/js/arvados/process/wb-process-misc.js 파일 보기

@@ -3,7 +3,7 @@ function encodeURIComponentIncludingDots(s) {
}
function parseKeepRef(value) {
if (typeof(value) === 'object' && 'location' in value && value.location.startsWith('keep:'))
if (value && typeof(value) === 'object' && 'location' in value && value.location.startsWith('keep:'))
return value.location.substr(5);
return value;
}


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