1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-24 07:49:41 +02:00

fix(namespace): handle undefined registry options [EE-6366] (#10683)

Co-authored-by: testa113 <testa113>
This commit is contained in:
Ali 2023-11-24 10:58:32 +13:00 committed by GitHub
parent a4b17d2548
commit 2f91315ac7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,14 +9,14 @@ import { Link } from '@@/Link';
interface Props {
value: MultiValue<Registry>;
onChange(value: MultiValue<Registry>): void;
options: Registry[];
options?: Registry[];
inputId?: string;
}
export function RegistriesSelector({
value,
onChange,
options,
options = [],
inputId,
}: Props) {
const { isAdmin } = useCurrentUser();