Re-enable labels on the grid cards

This commit is contained in:
Jackson Harper
2022-04-14 20:10:27 -07:00
parent 7133182f46
commit 6cb78cca34

View File

@ -154,11 +154,11 @@ export function GridLinkedItemCard(props: LinkedItemCardProps): JSX.Element {
/> />
)} )}
</HStack> </HStack>
{/* <HStack css={{ mt: '8px' }}> <HStack css={{ mt: '8px' }}>
{props.item.labels?.map(({ name, color }, index) => ( {props.item.labels?.map(({ name, color }, index) => (
<LabelChip key={index} text={name || ''} color={color} /> <LabelChip key={index} text={name || ''} color={color} />
))} ))}
</HStack> */} </HStack>
</VStack> </VStack>
) )
} }