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 = {
84
84
"Request to https://api.github.com/repos/octodemo/Hello-World/code-scanning/codeql/queries failed. Try running this query again." ,
85
85
actions : (
86
86
< >
87
- < VscodeButton appearance = " secondary" > View actions logs</ VscodeButton >
87
+ < VscodeButton secondary > View actions logs</ VscodeButton >
88
88
< VscodeButton > Retry</ VscodeButton >
89
89
</ >
90
90
) ,
Original file line number Diff line number Diff line change @@ -25,12 +25,12 @@ export const ModelAlertsActions = ({
25
25
return (
26
26
< Container >
27
27
{ variantAnalysisStatus === VariantAnalysisStatus . InProgress && (
28
- < Button appearance = " secondary" onClick = { onStopRunClick } >
28
+ < Button secondary onClick = { onStopRunClick } >
29
29
Stop evaluation
30
30
</ Button >
31
31
) }
32
32
{ variantAnalysisStatus === VariantAnalysisStatus . Canceling && (
33
- < Button appearance = " secondary" disabled = { true } >
33
+ < Button secondary disabled = { true } >
34
34
Stopping evaluation
35
35
</ Button >
36
36
) }
Original file line number Diff line number Diff line change @@ -338,13 +338,13 @@ export function ModelEditor({
338
338
{ selectedSignatures . size === 0 ? "Save all" : "Save selected" }
339
339
</ VscodeButton >
340
340
< VscodeButton
341
- appearance = " secondary"
341
+ secondary
342
342
onClick = { onDeselectAllClick }
343
343
disabled = { selectedSignatures . size === 0 }
344
344
>
345
345
Deselect all
346
346
</ VscodeButton >
347
- < VscodeButton appearance = " secondary" onClick = { onRefreshClick } >
347
+ < VscodeButton secondary onClick = { onRefreshClick } >
348
348
Refresh
349
349
</ VscodeButton >
350
350
{ viewState . showGenerateButton &&
Original file line number Diff line number Diff line change @@ -55,14 +55,14 @@ export const ModelEvaluation = ({
55
55
{ shouldShowEvaluateButton && (
56
56
< VscodeButton
57
57
onClick = { onStartEvaluation }
58
- appearance = " secondary"
58
+ secondary
59
59
disabled = { ! customModelsExist || unsavedChanges }
60
60
>
61
61
Evaluate
62
62
</ VscodeButton >
63
63
) }
64
64
{ shouldShowStopButton && (
65
- < VscodeButton onClick = { onStopEvaluation } appearance = " secondary" >
65
+ < VscodeButton onClick = { onStopEvaluation } secondary >
66
66
< ModelEditorProgressRing />
67
67
Stop evaluation
68
68
</ VscodeButton >
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ export const VariantAnalysisActions = ({
67
67
{ showResultActions && (
68
68
< >
69
69
< Button
70
- appearance = " secondary"
70
+ secondary
71
71
onClick = { onCopyRepositoryListClick }
72
72
disabled = { copyRepositoryListDisabled }
73
73
>
@@ -96,15 +96,15 @@ export const VariantAnalysisActions = ({
96
96
) }
97
97
{ variantAnalysisStatus === VariantAnalysisStatus . InProgress && (
98
98
< Button
99
- appearance = " secondary"
99
+ secondary
100
100
onClick = { onStopQueryClick }
101
101
disabled = { stopQueryDisabled }
102
102
>
103
103
Stop query
104
104
</ Button >
105
105
) }
106
106
{ variantAnalysisStatus === VariantAnalysisStatus . Canceling && (
107
- < Button appearance = " secondary" disabled = { true } >
107
+ < Button secondary disabled = { true } >
108
108
Stopping query
109
109
</ Button >
110
110
) }
You can’t perform that action at this time.
0 commit comments