From 479e6fa224758a284291a2bc1ee57ecc597bcb90 Mon Sep 17 00:00:00 2001 From: Dominik Csapak Date: Wed, 13 Mar 2019 15:17:10 +0100 Subject: [PATCH] fix #1945: enable dns names for ldap servers on gui was only available in the backend, allow it also on the gui Signed-off-by: Dominik Csapak --- js/LDAPConfig.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/LDAPConfig.js b/js/LDAPConfig.js index 172a75b..79f23f8 100644 --- a/js/LDAPConfig.js +++ b/js/LDAPConfig.js @@ -65,7 +65,7 @@ Ext.define('PMG.LDAPInputPanel', { xtype: 'textfield', fieldLabel: gettext('Server'), allowBlank: false, - vtype: 'IP64Address', + vtype: 'DnsOrIp', name: 'server1' }, { @@ -73,7 +73,7 @@ Ext.define('PMG.LDAPInputPanel', { fieldLabel: gettext('Server'), allowBlank: true, deleteEmpty: me.isCreate ? false : true, - vtype: 'IP64Address', + vtype: 'DnsOrIp', name: 'server2' }, { -- 2.39.2