1
0
Fork 0
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:
Oscar Zhou 2022-10-25 14:39:24 +13:00 committed by GitHub
parent 55211ef00e
commit cb9fe2606c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 36 additions and 0 deletions

View file

@ -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}
/>
);
}