# Conflicts:
#	metadata/dbms/window.js
This commit is contained in:
2024-12-08 15:32:30 +06:00
4 changed files with 37 additions and 22 deletions

View File

@ -36,7 +36,10 @@ function trt(key)
}
}
}
if(val==null || val===undefined) return (''+key).replace(/_/g, ' ');
if(val==null || val===undefined) {
return ('' + key).replace(/_/g, ' ');
}
else return val;
}