community增加事件详情

This commit is contained in:
2026-01-07 10:45:55 +08:00
parent 57e8eba4a7
commit 803c207e1d

View File

@@ -941,8 +941,8 @@ const RelatedConceptsSection = ({
</HStack>
</Flex>
)}
<SimpleGrid columns={{ base: 1, md: 2 }} spacing={5}>
{[1, 2, 3, 4].map((i) => (
<SimpleGrid columns={{ base: 1, md: 2, lg: 3 }} spacing={4}>
{[1, 2, 3, 4, 5, 6].map((i) => (
<SkeletonCard key={i} />
))}
</SimpleGrid>
@@ -1010,7 +1010,7 @@ const RelatedConceptsSection = ({
</VStack>
</Center>
) : (
<SimpleGrid columns={{ base: 1, md: 2 }} spacing={5}>
<SimpleGrid columns={{ base: 1, md: 2, lg: 3 }} spacing={4}>
{concepts.map((concept, index) => (
<ConceptCard
key={concept.concept_id || concept.id || index}