use span instead of input in mail ui

This commit is contained in:
Kevin Froman 2019-10-14 06:02:51 -05:00
parent 63fced9cff
commit 2d5fc6cf54
4 changed files with 29 additions and 11 deletions

View file

@ -29,7 +29,7 @@ function loadHumanReadableToCache(key){
function setHumanReadableValue(el, key){
if (typeof humanReadableCache[key] != 'undefined'){
el.value = humanReadableCache[key]
el.innerText = humanReadableCache[key].split('-').slice(0,3).join('-')
return
}
else{