mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
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…
x
Reference in New Issue
Block a user