This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'development'

+13 -15
+10 -12
src/webapp/features/connections/containers/connectionsContainer/ConnectionsContainer.tsx
··· 4 4 import useBackwardConnections from '@/features/connections/lib/queries/useBackwardConnections'; 5 5 import useAllConnections from '@/features/connections/lib/queries/useAllConnections'; 6 6 import InfiniteScroll from '@/components/contentDisplay/infiniteScroll/InfiniteScroll'; 7 - import { Box, Grid, Group, Stack } from '@mantine/core'; 7 + import { Box, Group, Stack } from '@mantine/core'; 8 8 import ConnectionsContainerError from './Error.ConnectionsContainer'; 9 9 import ConnectionItem from '@/features/connections/components/connectionItem/ConnectionItem'; 10 10 import SembleEmptyTab from '@/features/semble/components/sembleEmptyTab/SembleEmptyTab'; ··· 156 156 isLoading={isFetchingNextPage} 157 157 loadMore={fetchNextPage} 158 158 > 159 - <Grid gap="xl" mx={'auto'} maw={600} w={'100%'}> 159 + <Stack gap="xl" mx={'auto'} maw={600} w={'100%'}> 160 160 {connections.map((connection, index) => { 161 161 // Determine the actual direction for this specific connection 162 162 // If direction is 'all', check if the source URL matches props.url ··· 177 177 containIntrinsicSize: 'auto 200px', 178 178 }} 179 179 > 180 - <Grid.Col span={12}> 181 - <ConnectionItem 182 - connection={connection} 183 - direction={connectionDirection} 184 - onEdit={() => { 185 - handleOpenEditModal(connection.connection, targetUrl); 186 - }} 187 - /> 188 - </Grid.Col> 180 + <ConnectionItem 181 + connection={connection} 182 + direction={connectionDirection} 183 + onEdit={() => { 184 + handleOpenEditModal(connection.connection, targetUrl); 185 + }} 186 + /> 189 187 </Box> 190 188 ); 191 189 })} 192 - </Grid> 190 + </Stack> 193 191 </InfiniteScroll> 194 192 )} 195 193 </Stack>
+2 -2
src/webapp/features/home/components/recentCollections/Skeleton.RecentCollections.tsx
··· 17 17 </Group> 18 18 19 19 <Group gap="xs"> 20 - <Skeleton w={56} h={30} radius={'xl'} /> 21 - <Skeleton w={82} h={30} radius={'xl'} /> 22 20 <Skeleton w={110} h={30} radius={'xl'} /> 21 + <Skeleton w={82} h={30} radius={'xl'} /> 22 + <Skeleton w={109} h={30} radius={'xl'} /> 23 23 </Group> 24 24 25 25 <SimpleGrid cols={{ base: 1, sm: 2, lg: 4 }} spacing="xs">
+1 -1
src/webapp/features/platforms/bluesky/components/videoEmbed/VideoEmbed.tsx
··· 20 20 : 16 / 9; 21 21 22 22 return ( 23 - <AspectRatio ratio={ratio} style={{ position: 'relative', zIndex: 1 }}> 23 + <AspectRatio ratio={ratio} style={{ position: 'relative', zIndex: 0 }}> 24 24 <MediaPlayer 25 25 crossOrigin 26 26 playsInline