diff --git a/torchci/components/WorkflowBox.tsx b/torchci/components/WorkflowBox.tsx index fdc49fa146..f656c11631 100644 --- a/torchci/components/WorkflowBox.tsx +++ b/torchci/components/WorkflowBox.tsx @@ -30,9 +30,6 @@ function sortJobsByConclusion(jobA: JobData, jobB: JobData): number { // Jobs with the same conclusion are sorted alphabetically return ("" + jobA.jobName).localeCompare("" + jobB.jobName); // the '' forces the type to be a string } -const CustomIoMdArrowDropdownShow = styled(IoMdArrowDropdown)({ - fontSize: "10px", -}); const JobButton = styled(Button)({ fontSize: "8px", @@ -91,7 +88,7 @@ function WorkflowJobSummary({ if (hasArtifacts) { subInfo.push( setArtifactsToShowHelper()}> - artifacts + artifacts ); } @@ -131,7 +128,7 @@ function WorkflowJobSummary({ return ( {info} - {ind < subInfo.length - 1} + {ind < subInfo.length - 1 && " "} ); })}