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

View File

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