Skip to content

Commit dc990fd

Browse files
author
cesnietor
committed
Fix KMS status screen when api response field is null
1 parent 5e4276a commit dc990fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web-app/src/screens/Console/KMS/Status.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ const Status = () => {
222222
label={"Key Management Service Endpoints:"}
223223
value={
224224
<Fragment>
225-
{status.endpoints.map((e: any, i: number) => (
225+
{status.endpoints?.map((e: any, i: number) => (
226226
<LabelWithIcon
227227
key={i}
228228
icon={

0 commit comments

Comments
 (0)