mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-21 04:39:06 +00:00
hide number of meeting participants
This commit is contained in:
@@ -128,9 +128,10 @@ function MeetingStatus({ roomName }: { roomName: string }) {
|
|||||||
<Text fontSize="xs" color="gray.600" lineHeight={1}>
|
<Text fontSize="xs" color="gray.600" lineHeight={1}>
|
||||||
{title}
|
{title}
|
||||||
</Text>
|
</Text>
|
||||||
<Text fontSize="xs" color="gray.500" lineHeight={1}>
|
{/* num_clients is always 0 at this point. this is not implemented yet. */}
|
||||||
{meeting.num_clients} participants
|
{/*<Text fontSize="xs" color="gray.500" lineHeight={1}>*/}
|
||||||
</Text>
|
{/* {meeting.num_clients} participants*/}
|
||||||
|
{/*</Text>*/}
|
||||||
</VStack>
|
</VStack>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -237,16 +237,18 @@ export default function MeetingSelection({
|
|||||||
color="gray.600"
|
color="gray.600"
|
||||||
flexWrap="wrap"
|
flexWrap="wrap"
|
||||||
>
|
>
|
||||||
<HStack>
|
{/* num_clients is always 0 at this point. this is not implemented yet. */}
|
||||||
<Icon
|
{/*<HStack>*/}
|
||||||
as={FaUsers}
|
{/* <Icon*/}
|
||||||
boxSize={{ base: "16px", md: "20px" }}
|
{/* as={FaUsers}*/}
|
||||||
/>
|
{/* boxSize={{ base: "16px", md: "20px" }}*/}
|
||||||
<Text fontWeight="medium">
|
{/* />*/}
|
||||||
{meeting.num_clients || 0} participant
|
{/* */}
|
||||||
{meeting.num_clients !== 1 ? "s" : ""}
|
{/* <Text fontWeight="medium">*/}
|
||||||
</Text>
|
{/* {meeting.num_clients || 0} participant*/}
|
||||||
</HStack>
|
{/* {meeting.num_clients !== 1 ? "s" : ""}*/}
|
||||||
|
{/* </Text>*/}
|
||||||
|
{/*</HStack>*/}
|
||||||
<HStack>
|
<HStack>
|
||||||
<Icon
|
<Icon
|
||||||
as={FaClock}
|
as={FaClock}
|
||||||
|
|||||||
Reference in New Issue
Block a user