Fix default value display

This commit is contained in:
Christophe Maudoux 2019-02-01 19:55:10 +01:00
parent 0110634473
commit f33697de06
3 changed files with 2 additions and 4 deletions

View File

@ -508,6 +508,7 @@ sub tree {
'upgradeSession',
{ title => 'portalServers',
help => 'portalservers.html',
form => 'simpleInputContainer',
nodes => [
'wsdlServer',
'restSessionServer',
@ -515,7 +516,6 @@ sub tree {
'soapSessionServer',
'soapConfigServer',
'exportedAttr',
]
},
{ title => 'loginHistory',

View File

@ -678,8 +678,6 @@ llapp.controller 'TreeCtrl', [
else
node.data = data.value
# Cast int as int (remember that booleans are int for Perl)
#if node.type and node.type.match /^(bool|trool|boolOrExpr)$/
#node.data = node.data.toString()
if node.type and node.type.match /^int$/
node.data = parseInt(node.data, 10)
# Split SAML types

File diff suppressed because one or more lines are too long