Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Hide controls on closed reports
  • Loading branch information
regalijan committed Oct 20, 2023
1 parent d30c6e0 commit 5a1a40f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/ReportCard.tsx
Expand Up @@ -130,7 +130,7 @@ export default function (props: ReportCardProps) {
<br />
<Text my="16px">{props.description}</Text>
</CardBody>
<CardFooter>
<CardFooter visibility={props.open ? "visible" : "hidden"}>
<Stack direction="column" gap="16px">
{(function () {
const radioGroups = [];
Expand Down

0 comments on commit 5a1a40f

Please sign in to comment.