Compare commits

..

No commits in common. "18d18dbe14f8b9e28892525ec07c26e7eb67af30" and "ab3ae382e9159b2f4ea21f526215c923f0b44551" have entirely different histories.

View File

@ -284,12 +284,12 @@ export default function BugDetail() {
<span style={{ fontSize: '14px' }}>
PR #{bug.pr_number} | {bug.branch_name || 'fix branch'}
</span>
<a href={bug.pr_url || undefined} target="_blank" rel="noopener noreferrer" className="btn-link" style={{ display: 'inline-flex', alignItems: 'center', gap: '4px' }}>
<a href={bug.pr_url} target="_blank" rel="noopener noreferrer" className="btn-link" style={{ display: 'inline-flex', alignItems: 'center', gap: '4px' }}>
PR <ExternalLink size={12} />
</a>
{((bug.rejection_count ?? 0) > 0) && (
{bug.rejection_count > 0 && (
<span style={{ fontSize: '13px', color: 'var(--warning)' }}>
{bug.rejection_count ?? 0}
{bug.rejection_count}
</span>
)}
</div>