Skip to content

Commit 87905e0

Browse files
authored
Update components/Git/IssueCard.tsx
1 parent d7b0c87 commit 87905e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/Git/IssueCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export const IssueCard: FC<IssueCardProps> = observer(
1414
const { t } = useContext(I18nContext);
1515

1616
return (
17-
<Card className={`h-100 shadow-sm ${styles.issueCard} ${className}`}>
17+
<Card className={`shadow-sm ${styles.issueCard} ${className}`}>
1818
<Card.Header className="d-flex justify-content-between align-items-center">
1919
<Badge bg={state === 'open' ? 'success' : 'secondary'}>
2020
{state === 'open' ? t('open') : t('closed')}

0 commit comments

Comments
 (0)