1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-30 18:59: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 { interface Props {
value: MultiValue<Registry>; value: MultiValue<Registry>;
onChange(value: MultiValue<Registry>): void; onChange(value: MultiValue<Registry>): void;
options: Registry[]; options?: Registry[];
inputId?: string; inputId?: string;
} }
export function RegistriesSelector({ export function RegistriesSelector({
value, value,
onChange, onChange,
options, options = [],
inputId, inputId,
}: Props) { }: Props) {
const { isAdmin } = useCurrentUser(); const { isAdmin } = useCurrentUser();