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!
Explorar el Código

Fix in parseKeepRef.

pull/1/head
Stanislaw Adaszewski hace 4 años
padre
commit
80429683e9
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      frontend/src/js/arvados/process/wb-process-misc.js

+ 1
- 1
frontend/src/js/arvados/process/wb-process-misc.js Ver fichero

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


Cargando…
Cancelar
Guardar