File tree 3 files changed +3
-3
lines changed
applications/analysis-wizard
migration-targets/components
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -425,7 +425,7 @@ export interface Target {
425
425
labels ?: TargetLabel [ ] ;
426
426
image ?: RulesetImage ;
427
427
ruleset : Ruleset ;
428
- provider ?: string [ ] ;
428
+ provider ?: string ;
429
429
}
430
430
431
431
export interface Metadata {
Original file line number Diff line number Diff line change @@ -184,7 +184,7 @@ export const SetTargets: React.FC<SetTargetsProps> = ({ applications }) => {
184
184
onChange = { ( selection ) => {
185
185
setProvider ( selection as string [ ] ) ;
186
186
} }
187
- toggleId = "language -select-toggle"
187
+ toggleId = "action -select-toggle"
188
188
/>
189
189
{ values . selectedTargets . length === 0 &&
190
190
values . customRulesFiles . length === 0 &&
Original file line number Diff line number Diff line change @@ -307,7 +307,7 @@ export const CustomTargetForm: React.FC<CustomTargetFormProps> = ({
307
307
} ,
308
308
} ) ,
309
309
} ,
310
- provider : [ providerType ] || [ "Java" ] ,
310
+ provider : providerType || "Java" ,
311
311
} ;
312
312
313
313
if ( target ) {
You can’t perform that action at this time.
0 commit comments