diff --git a/client/htmls/private/ajax/Settings/CreateOrg.html b/client/htmls/private/ajax/Settings/CreateOrg.html index cc371df58..46b67c0dc 100755 --- a/client/htmls/private/ajax/Settings/CreateOrg.html +++ b/client/htmls/private/ajax/Settings/CreateOrg.html @@ -37,7 +37,7 @@

Create Organization

- + diff --git a/client/htmls/private/ajax/Settings/providerSync.html b/client/htmls/private/ajax/Settings/providerSync.html index bfb4727f6..48a1e19a7 100644 --- a/client/htmls/private/ajax/Settings/providerSync.html +++ b/client/htmls/private/ajax/Settings/providerSync.html @@ -780,7 +780,19 @@ "columns": [ {"data": "platformId","orderable" : true }, {"data": "hardware.os","orderable" : false }, - {"data": "instanceIP","orderable" : true }, + {"data": "instanceIP","orderable" : true, + "render":function(data, type, full, meta) { + if(full.instanceIP === null){ + if(full.privateIpAddress === null){ + return '-'; + }else{ + return full.privateIpAddress; + } + }else{ + return full.instanceIP; + } + } + }, {"data": "","orderable" : true, "render":function(data, type, full, meta) { return full.region?full.region:full.providerData?full.providerData.region:'-'; @@ -1697,7 +1709,15 @@ {"data": "os","orderable" : false }, {"data": "","orderable" : true, "render":function(data, type, full, meta) { - return full.ip !== null ? full.ip:full.privateIpAddress; + if(full.ip === null){ + if(full.privateIpAddress === null){ + return '-'; + }else{ + return full.privateIpAddress; + } + }else{ + return full.ip; + } } }, {"data": "","orderable" : true, @@ -1866,7 +1886,15 @@ {"data": "os","orderable" : false }, {"data": "","orderable" : true, "render":function(data, type, full, meta) { - return full.ip !== null ? full.ip:full.privateIpAddress; + if(full.ip === null){ + if(full.privateIpAddress === null){ + return '-'; + }else{ + return full.privateIpAddress; + } + }else{ + return full.ip; + } } }, {"data": "state","orderable" : true }, diff --git a/client/htmls/private/js/settingscommon.js b/client/htmls/private/js/settingscommon.js index 2a258ad94..72feb9ac4 100755 --- a/client/htmls/private/js/settingscommon.js +++ b/client/htmls/private/js/settingscommon.js @@ -3441,11 +3441,11 @@ function isFormValid(formid) { currCtrl.focus(); } - if (!/[!@#$%^&*]/.test(str)) { + /*if (!/[!@#$%^&*]/.test(str)) { isValid = false; errormessageforInput(currCtrl.attr('id'), "Atleast a special char is required."); currCtrl.focus(); - } + }*/ } break; diff --git a/client/htmls/public/instanceLog.html b/client/htmls/public/instanceLog.html index dc1892ac7..4f13795fe 100644 --- a/client/htmls/public/instanceLog.html +++ b/client/htmls/public/instanceLog.html @@ -280,7 +280,7 @@