mirror of https://github.com/apache/cloudstack.git
Test Provisioning Tool - related UI change after API refactor (after "true"=>true, "false"=>false, "3"=>3)
This commit is contained in:
parent
e5e128545d
commit
a03a58d379
|
|
@ -671,8 +671,12 @@ $(document).ready(function() {
|
|||
}
|
||||
responseText += ('<br>' + includingIndent('} ', -1));
|
||||
responseIndent--;
|
||||
} else if (typeof obj == 'string') {
|
||||
}
|
||||
else if (typeof obj == 'string') {
|
||||
responseText += ('"'+ obj + '"');
|
||||
}
|
||||
else if (typeof obj == 'number' || typeof obj == "boolean") {
|
||||
responseText += (obj.toString());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue