File tree Expand file tree Collapse file tree
extensions/ql-vscode/src/view/variant-analysis Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import { VSCodeBadge , VSCodeCheckbox } from '@vscode/webview-ui-toolkit/react' ;
22import * as React from 'react' ;
33import styled from 'styled-components' ;
4- import { WarningIcon } from '../common' ;
4+ import { Codicon , WarningIcon } from '../common' ;
55import { VariantAnalysisSkippedRepository as SkippedRepo } from '../../remote-queries/shared/variant-analysis' ;
66
77export type VariantAnalysisSkippedRepositoryRowProps = {
@@ -15,8 +15,8 @@ const Row = styled.div`
1515 align-items: center;
1616` ;
1717
18- const ChevronIcon = styled . span `
19- color: var(--vscode-descriptionForeground );
18+ const ChevronIcon = styled ( Codicon ) `
19+ color: var(--vscode-disabledForeground );
2020` ;
2121
2222const PrivacyText = styled . span `
@@ -38,7 +38,7 @@ export const VariantAnalysisSkippedRepositoryRow = ({
3838 return (
3939 < Row >
4040 < VSCodeCheckbox />
41- < ChevronIcon className = "codicon codicon- chevron-right" />
41+ < ChevronIcon name = ' chevron-right' label = 'Expand' />
4242 < VSCodeBadge > -</ VSCodeBadge >
4343 < span > { repository . fullName } </ span >
4444 { getPrivacyElement ( repository . private ) }
You can’t perform that action at this time.
0 commit comments