File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/search/components/input Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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;' : '' ,
You can’t perform that action at this time.
0 commit comments