We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7b0c87 commit 87905e0Copy full SHA for 87905e0
components/Git/IssueCard.tsx
@@ -14,7 +14,7 @@ export const IssueCard: FC<IssueCardProps> = observer(
14
const { t } = useContext(I18nContext);
15
16
return (
17
- <Card className={`h-100 shadow-sm ${styles.issueCard} ${className}`}>
+ <Card className={`shadow-sm ${styles.issueCard} ${className}`}>
18
<Card.Header className="d-flex justify-content-between align-items-center">
19
<Badge bg={state === 'open' ? 'success' : 'secondary'}>
20
{state === 'open' ? t('open') : t('closed')}
0 commit comments