Skip to content

Commit

Permalink
NIFI-3785: Removed invalid initial process group value.
Browse files Browse the repository at this point in the history
  • Loading branch information
Freedom9339 committed Nov 12, 2024
1 parent 59d1ed0 commit 94b6dd4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ <h2 mat-dialog-title>Move Controller Service</h2>
</div>
<div>
<mat-form-field>
<mat-label>Process Group:</mat-label>
<mat-label>Process Group</mat-label>
<mat-select formControlName="processGroups">
@for (option of processGroupOptions; track option) {
<div
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export class MoveControllerService extends CloseOnEscapeDialog {

// build the form
this.moveControllerServiceForm = this.formBuilder.group({
processGroups: new FormControl('Process Group', Validators.required)
processGroups: new FormControl('', Validators.required)
});

this.processGroupOptions = request.options;
Expand Down

0 comments on commit 94b6dd4

Please sign in to comment.