fix: contrast on View Trace button (#35505)
This commit is contained in:
parent
aec54fa573
commit
a2ddb2a3ea
|
@ -97,7 +97,7 @@ function traceBadge(test: TestCaseSummary): JSX.Element | undefined {
|
|||
title={isFailed ? 'View Failing Trace' : 'View Trace'}
|
||||
className={clsx('test-file-badge', isFailed && 'button')}>
|
||||
{trace()}
|
||||
{isFailed && <span style={{ color: 'var(--color-scale-gray-7)' }}>View Failing Trace</span>}
|
||||
{isFailed && <span style={{ color: 'var(--color-fg-subtle)' }}>View Failing Trace</span>}
|
||||
</Link>;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue