fix(FN-4190): allow deferred tracking helper text to wrap

Fusion-Task-Id: FN-4190
Fusion-Task-Lineage: 5d94a4ad-32fb-4d20-8d04-5d757619f104
This commit is contained in:
Fusion
2026-05-13 04:55:53 -07:00
committed by gsxdsm
parent fb8a1983ab
commit 9c44bb0159
2 changed files with 9 additions and 1 deletions

View File

@@ -582,6 +582,14 @@
gap: var(--space-sm);
}
.detail-github-tracking-helper {
display: block;
color: var(--text-muted);
line-height: 1.4;
white-space: normal;
overflow-wrap: anywhere;
}
.detail-github-tracking-repo-row {
display: flex;
gap: var(--space-sm);

View File

@@ -2522,7 +2522,7 @@ export function TaskDetailContent({
Create tracking issue
</button>
{!canCreateTrackingIssue && (
<small className="detail-source-empty">Tracking issue will be created once this task has a title or description to summarize.</small>
<small className="detail-github-tracking-helper">Tracking issue will be created once this task has a title or description to summarize.</small>
)}
</>
)}