Skip to content

Commit 6b3e75a

Browse files
authored
Merge pull request #40523 from github/repo-sync
Repo sync
2 parents 4769f80 + ac91069 commit 6b3e75a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/search/components/input/AskAIResults.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ export function AskAIResults({
417417
className={'btn-octicon'}
418418
aria-label={t('ai.thumbs_up')}
419419
sx={{
420-
border: 'none',
420+
border: feedbackSelected === 'up' ? '1px solid var(--color-btn-text)' : 'none',
421421
backgroundColor: feedbackSelected === 'up' ? '' : 'unset',
422422
boxShadow: 'unset',
423423
color: feedbackSelected === 'up' ? 'var(--fgColor-accent) !important;' : '',
@@ -439,7 +439,7 @@ export function AskAIResults({
439439
className={'btn-octicon'}
440440
aria-label={t('ai.thumbs_down')}
441441
sx={{
442-
border: 'none',
442+
border: feedbackSelected === 'down' ? '1px solid var(--color-btn-text)' : 'none',
443443
backgroundColor: feedbackSelected === 'down' ? '' : 'unset',
444444
boxShadow: 'unset',
445445
color: feedbackSelected === 'down' ? 'var(--fgColor-accent) !important;' : '',

0 commit comments

Comments
 (0)