Skip to content

Commit

Permalink
[ZEPPELIN-6079] Fix Interpreter Configuration not working in new UI (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
cherrie-k authored Sep 10, 2024
1 parent 205014f commit 940cf13
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -291,9 +291,10 @@ export class InterpreterItemComponent extends DestroyHookComponent implements On

// set dependencies fields
this.interpreter.dependencies.forEach(e => {
const exclusions = Array.isArray(e.exclusions) ? e.exclusions : [];
this.dependenciesFormArray.push(
this.formBuilder.group({
exclusions: [e.exclusions.join(',')],
exclusions: [exclusions.join(',')],
groupArtifactVersion: [e.groupArtifactVersion, [Validators.required]]
})
);
Expand Down

0 comments on commit 940cf13

Please sign in to comment.