File tree Expand file tree Collapse file tree 5 files changed +10
-10
lines changed
Expand file tree Collapse file tree 5 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ ErrorWithButtons.args = {
8484 "Request to https://api.github.com/repos/octodemo/Hello-World/code-scanning/codeql/queries failed. Try running this query again." ,
8585 actions : (
8686 < >
87- < VscodeButton appearance = " secondary" > View actions logs</ VscodeButton >
87+ < VscodeButton secondary > View actions logs</ VscodeButton >
8888 < VscodeButton > Retry</ VscodeButton >
8989 </ >
9090 ) ,
Original file line number Diff line number Diff line change @@ -25,12 +25,12 @@ export const ModelAlertsActions = ({
2525 return (
2626 < Container >
2727 { variantAnalysisStatus === VariantAnalysisStatus . InProgress && (
28- < Button appearance = " secondary" onClick = { onStopRunClick } >
28+ < Button secondary onClick = { onStopRunClick } >
2929 Stop evaluation
3030 </ Button >
3131 ) }
3232 { variantAnalysisStatus === VariantAnalysisStatus . Canceling && (
33- < Button appearance = " secondary" disabled = { true } >
33+ < Button secondary disabled = { true } >
3434 Stopping evaluation
3535 </ Button >
3636 ) }
Original file line number Diff line number Diff line change @@ -338,13 +338,13 @@ export function ModelEditor({
338338 { selectedSignatures . size === 0 ? "Save all" : "Save selected" }
339339 </ VscodeButton >
340340 < VscodeButton
341- appearance = " secondary"
341+ secondary
342342 onClick = { onDeselectAllClick }
343343 disabled = { selectedSignatures . size === 0 }
344344 >
345345 Deselect all
346346 </ VscodeButton >
347- < VscodeButton appearance = " secondary" onClick = { onRefreshClick } >
347+ < VscodeButton secondary onClick = { onRefreshClick } >
348348 Refresh
349349 </ VscodeButton >
350350 { viewState . showGenerateButton &&
Original file line number Diff line number Diff line change @@ -55,14 +55,14 @@ export const ModelEvaluation = ({
5555 { shouldShowEvaluateButton && (
5656 < VscodeButton
5757 onClick = { onStartEvaluation }
58- appearance = " secondary"
58+ secondary
5959 disabled = { ! customModelsExist || unsavedChanges }
6060 >
6161 Evaluate
6262 </ VscodeButton >
6363 ) }
6464 { shouldShowStopButton && (
65- < VscodeButton onClick = { onStopEvaluation } appearance = " secondary" >
65+ < VscodeButton onClick = { onStopEvaluation } secondary >
6666 < ModelEditorProgressRing />
6767 Stop evaluation
6868 </ VscodeButton >
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ export const VariantAnalysisActions = ({
6767 { showResultActions && (
6868 < >
6969 < Button
70- appearance = " secondary"
70+ secondary
7171 onClick = { onCopyRepositoryListClick }
7272 disabled = { copyRepositoryListDisabled }
7373 >
@@ -96,15 +96,15 @@ export const VariantAnalysisActions = ({
9696 ) }
9797 { variantAnalysisStatus === VariantAnalysisStatus . InProgress && (
9898 < Button
99- appearance = " secondary"
99+ secondary
100100 onClick = { onStopQueryClick }
101101 disabled = { stopQueryDisabled }
102102 >
103103 Stop query
104104 </ Button >
105105 ) }
106106 { variantAnalysisStatus === VariantAnalysisStatus . Canceling && (
107- < Button appearance = " secondary" disabled = { true } >
107+ < Button secondary disabled = { true } >
108108 Stopping query
109109 </ Button >
110110 ) }
You can’t perform that action at this time.
0 commit comments