mirror of
https://github.com/portainer/portainer.git
synced 2025-07-25 08:19:40 +02:00
fix(team): disable team leader setting when external auth sync is enabled [EE-3579] (#7852)
This commit is contained in:
parent
55211ef00e
commit
cb9fe2606c
6 changed files with 36 additions and 0 deletions
|
@ -10,6 +10,7 @@ interface Props {
|
|||
dataCy?: string;
|
||||
inputId?: string;
|
||||
placeholder?: string;
|
||||
disabled?: boolean;
|
||||
}
|
||||
|
||||
export function UsersSelector({
|
||||
|
@ -20,6 +21,7 @@ export function UsersSelector({
|
|||
dataCy,
|
||||
inputId,
|
||||
placeholder,
|
||||
disabled,
|
||||
}: Props) {
|
||||
return (
|
||||
<Select
|
||||
|
@ -36,6 +38,7 @@ export function UsersSelector({
|
|||
data-cy={dataCy}
|
||||
inputId={inputId}
|
||||
placeholder={placeholder}
|
||||
isDisabled={disabled}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue