Hide controls on closed reports

This commit is contained in:
regalijan 2023-10-20 12:23:47 -04:00
parent d30c6e06d5
commit 5a1a40f799
Signed by: regalijan
GPG Key ID: 5D4196DA269EF520

View File

@ -130,7 +130,7 @@ export default function (props: ReportCardProps) {
<br /> <br />
<Text my="16px">{props.description}</Text> <Text my="16px">{props.description}</Text>
</CardBody> </CardBody>
<CardFooter> <CardFooter visibility={props.open ? "visible" : "hidden"}>
<Stack direction="column" gap="16px"> <Stack direction="column" gap="16px">
{(function () { {(function () {
const radioGroups = []; const radioGroups = [];