From 6c450c294bc573dbef23ddab92b6031ab2f3f5df Mon Sep 17 00:00:00 2001 From: noah Date: Mon, 18 Oct 2021 20:21:14 +0900 Subject: [PATCH] Fix the condition of the foldable status --- ui/src/components/DeployConfirm.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/components/DeployConfirm.tsx b/ui/src/components/DeployConfirm.tsx index 67b9069e..9cb88292 100644 --- a/ui/src/components/DeployConfirm.tsx +++ b/ui/src/components/DeployConfirm.tsx @@ -49,7 +49,7 @@ export default function DeployConfirm(props: DeployConfirmProps): JSX.Element { {...layout} label="Status" > - {(props.deployment.statuses)? + {(props.deployment.statuses && props.deployment.statuses.length > 0)?