mirror of
https://github.com/portainer/portainer.git
synced 2025-08-06 06:15:22 +02:00
fix(authentication): allow nested whitespaces on AD OU names EE-5206 (#10260)
This commit is contained in:
parent
ae3e612a24
commit
776f6a62c3
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ export default class LdapSettingsBaseDnBuilderController {
|
||||||
const [, type, value] = match;
|
const [, type, value] = match;
|
||||||
ouValues.push({ type, value });
|
ouValues.push({ type, value });
|
||||||
left = left.replace(regex, '');
|
left = left.replace(regex, '');
|
||||||
match = left.match(/(\w+)=(\w+),?/);
|
match = left.match(regex);
|
||||||
}
|
}
|
||||||
return ouValues;
|
return ouValues;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue