File tree Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ message RichParameterOption {
27
27
28
28
// RichParameter represents a variable that is exposed.
29
29
message RichParameter {
30
- reserved 14 ;
30
+ reserved 14 ;
31
31
32
32
string name = 1 ;
33
33
string description = 2 ;
Original file line number Diff line number Diff line change @@ -1175,18 +1175,12 @@ const getMissingParameters = (
1175
1175
const requiredParameters : TypesGen . TemplateVersionParameter [ ] = [ ]
1176
1176
1177
1177
templateParameters . forEach ( ( p ) => {
1178
- // Legacy parameters should not be required. Backend can just migrate them.
1179
- const isLegacy = p . legacy_variable_name !== undefined
1180
1178
// It is mutable and required. Mutable values can be changed after so we
1181
1179
// don't need to ask them if they are not required.
1182
1180
const isMutableAndRequired = p . mutable && p . required
1183
1181
// Is immutable, so we can check if it is its first time on the build
1184
1182
const isImmutable = ! p . mutable
1185
1183
1186
- if ( isLegacy ) {
1187
- return
1188
- }
1189
-
1190
1184
if ( isMutableAndRequired || isImmutable ) {
1191
1185
requiredParameters . push ( p )
1192
1186
return
You can’t perform that action at this time.
0 commit comments