Skip to content

Commit

Permalink
fix broken expression code in people cloud (#9065)
Browse files Browse the repository at this point in the history
  • Loading branch information
DenysVuika committed Nov 6, 2023
1 parent 08da9ae commit 10361b9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ export class PeopleCloudWidgetComponent extends WidgetComponent implements OnIni
this.groupsRestriction = this.field.groupsRestriction;
this.validate = this.field.readOnly ? false : true;
}
// eslint-disable-next-line @typescript-eslint/no-unused-expressions
this.search = new UntypedFormControl({value: '', disabled: this.field.readOnly}, []),

this.search = new UntypedFormControl({value: '', disabled: this.field.readOnly}, []);

this.search.statusChanges
.pipe(
Expand Down

0 comments on commit 10361b9

Please sign in to comment.