Fix SAML attribute default value (#1635)

environments/ppa-mbqj77/deployments/671^2
Christophe Maudoux 6 years ago
parent 84913b36eb
commit c4b018ee68
  1. 2
      lemonldap-ng-manager/site/coffee/manager.coffee
  2. 2
      lemonldap-ng-manager/site/htdocs/static/js/manager.js
  3. 2
      lemonldap-ng-manager/site/htdocs/static/js/manager.min.js

@ -342,7 +342,7 @@ llapp.controller 'TreeCtrl', [
id: "#{node.id}/n#{id++}"
title: 'new'
type: 'samlAttribute'
data: [0, 'New', '', '']
data: ['0', 'New', '', '']
# Nodes with template
$scope.addVhost = ->

@ -410,7 +410,7 @@ This file contains:
id: node.id + "/n" + (id++),
title: 'new',
type: 'samlAttribute',
data: [0, 'New', '', '']
data: ['0', 'New', '', '']
});
};
$scope.addVhost = function() {

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save