Fix POST HEADER error and post process string errors - #1574

This commit is contained in:
enriquecd 2018-01-08 12:10:03 +01:00
parent 8b372eaffe
commit 52aaad1499
1 changed files with 4 additions and 3 deletions

View File

@ -1175,9 +1175,10 @@ function delete_relation (num_row, id_relation) {
function validate_post_process() {
var post_process = $("#text-post_process").val();
var new_post_process = post_process.replace(',', '.');
$("#text-post_process").val(new_post_process);
if(post_process !== undefined){
var new_post_process = post_process.replace(',', '.');
$("#text-post_process").val(new_post_process);
}
}
//function paint graph