fix(authentication): allow nested whitespaces on AD OU names EE-5206 (#10260)
This commit is contained in:
@@ -49,7 +49,7 @@ export default class LdapSettingsBaseDnBuilderController {
|
||||
const [, type, value] = match;
|
||||
ouValues.push({ type, value });
|
||||
left = left.replace(regex, '');
|
||||
match = left.match(/(\w+)=(\w+),?/);
|
||||
match = left.match(regex);
|
||||
}
|
||||
return ouValues;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user