mirror of
https://github.com/portainer/portainer.git
synced 2025-08-04 21:35:23 +02:00
fix(authentication): allow whitespaces when loading AD OU name EE-5206 (#9977)
This commit is contained in:
parent
8355d449c5
commit
0ef4aad79a
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ export default class LdapSettingsBaseDnBuilderController {
|
|||
}
|
||||
|
||||
getOUValues(dn, domainSuffix = '') {
|
||||
const regex = /(\w+)=(\w*),?/;
|
||||
const regex = /(\w+)=([a-zA-Z0-9_ ]*),?/;
|
||||
let ouValues = [];
|
||||
let left = dn;
|
||||
let match = left.match(regex);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue