Fix mapping over null reference for KMS endpoints (#3367)
This commit is contained in:
@@ -203,7 +203,8 @@ const Status = () => {
|
||||
label={"Key Management Service Endpoints:"}
|
||||
value={
|
||||
<Fragment>
|
||||
{status.endpoints?.map((e: any, i: number) => (
|
||||
{status.endpoints &&
|
||||
status.endpoints.map((e: any, i: number) => (
|
||||
<LabelWithIcon
|
||||
key={i}
|
||||
icon={
|
||||
|
||||
Reference in New Issue
Block a user