Skip to content

Commit

Permalink
[ACS-4130] Added missed types
Browse files Browse the repository at this point in the history
  • Loading branch information
swapnil-verma-gl committed Oct 9, 2023
1 parent 27d70de commit 32201b6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ export class RuleSimpleConditionUiComponent implements OnInit, ControlValueAcces
return autoCompleteOptions.sort((option1, option2) => option1.displayLabel.localeCompare(option2.displayLabel));
}

autoCompleteDisplayFunction = (optionValue) =>
autoCompleteDisplayFunction = (optionValue: string): string =>
optionValue && this.autoCompleteOptions ? this.autoCompleteOptions.find((option) => option.value === optionValue)?.displayLabel : optionValue;

autoSelectValidOption() {
Expand Down

0 comments on commit 32201b6

Please sign in to comment.