File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
client/components/configuration Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -406,8 +406,8 @@ export class Annotations extends LitElement {
406
406
< div class ="box ">
407
407
${ this . renderDropdownListTabEntry ( 'promptEnv' , [
408
408
{ text : 'Auto' , value : 'auto' , enumNum : 0 } ,
409
- { text : 'Yes ' , value : 'yes ' , enumNum : 1 } ,
410
- { text : 'No ' , value : 'no ' , enumNum : 2 } ,
409
+ { text : 'Always ' , value : 'always ' , enumNum : 1 } ,
410
+ { text : 'Never ' , value : 'never ' , enumNum : 2 } ,
411
411
] ) }
412
412
</ div >
413
413
< div class ="box "> ${ this . renderTextFieldTabEntry ( 'cwd' ) } </ div >
Original file line number Diff line number Diff line change @@ -64,10 +64,10 @@ export const AnnotationSchema = {
64
64
if ( typeof subject === 'boolean' && subject ) {
65
65
return ResolveProgramRequest_Mode . UNSPECIFIED
66
66
}
67
- if ( typeof subject === 'string' && [ 'false' , 'no' ] . includes ( subject . toLowerCase ( ) ) ) {
67
+ if ( typeof subject === 'string' && [ 'false' , 'no' , 'never' ] . includes ( subject . toLowerCase ( ) ) ) {
68
68
return ResolveProgramRequest_Mode . SKIP_ALL
69
69
}
70
- if ( typeof subject === 'string' && [ 'true' , 'yes' ] . includes ( subject . toLowerCase ( ) ) ) {
70
+ if ( typeof subject === 'string' && [ 'true' , 'yes' , 'always' ] . includes ( subject . toLowerCase ( ) ) ) {
71
71
return ResolveProgramRequest_Mode . PROMPT_ALL
72
72
}
73
73
if ( typeof subject === 'string' && [ '' , 'auto' ] . includes ( subject . toLowerCase ( ) ) ) {
You can’t perform that action at this time.
0 commit comments