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

Co-authored-by: testa113 <testa113>
pull/10684/head
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
1 changed files with 2 additions and 2 deletions

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();