diff --git a/ui/test/scripts/cloud.core.test.js b/ui/test/scripts/cloud.core.test.js index 46fe19b65cd..398f2985191 100644 --- a/ui/test/scripts/cloud.core.test.js +++ b/ui/test/scripts/cloud.core.test.js @@ -671,8 +671,12 @@ $(document).ready(function() { } responseText += ('
' + 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()); } }