1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-01-08 21:17:43 +03:00

B #5293 Solved bug INPUTS_ORDER in lowercase (#423)

This commit is contained in:
Abel Coronado 2017-07-28 15:14:30 +02:00 committed by Tino Vázquez
parent 427322ebb5
commit 2cea97b73f

View File

@ -87,7 +87,7 @@ define(function(require) {
var order_inputs = "";
$('.user_input_attrs tbody tr').each(function(key, value){
order_inputs += $(".user_input_name", $(this)).val() + ",";
order_inputs += $(".user_input_name", $(this)).val().toUpperCase() + ",";
});
this.order = order_inputs.slice(0,-1);