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

Fix in parseKeepRef.

pull/1/head
parent
commit
80429683e9
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      frontend/src/js/arvados/process/wb-process-misc.js

+ 1
- 1
frontend/src/js/arvados/process/wb-process-misc.js View File

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


Loading…
Cancel
Save