Skip to content
This repository has been archived by the owner on May 30, 2024. It is now read-only.

Commit

Permalink
Fix the condition of the foldable status in UI(#173)
Browse files Browse the repository at this point in the history
  • Loading branch information
Noah Hanjun Lee authored Oct 18, 2021
1 parent d0bbec1 commit 7d3887f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/components/DeployConfirm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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)?
<Collapse ghost>
<Panel
key={1}
Expand Down

0 comments on commit 7d3887f

Please sign in to comment.