Skip to content

Commit

Permalink
remove trim
Browse files Browse the repository at this point in the history
  • Loading branch information
cetincakiroglu committed Feb 7, 2024
1 parent a2df2b3 commit 5129958
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/components/multiselect/multiselect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -976,7 +976,7 @@ export class MultiSelect implements OnInit, AfterViewInit, AfterContentInit, Aft

selectedOptions: any;

clickInProgress : boolean = false;
clickInProgress: boolean = false;

get containerClass() {
return {
Expand Down Expand Up @@ -1747,7 +1747,7 @@ export class MultiSelect implements OnInit, AfterViewInit, AfterContentInit, Aft
}

onFilterInputChange(event: KeyboardEvent) {
let value: string = (event.target as HTMLInputElement).value?.trim();
let value: string = (event.target as HTMLInputElement).value;
this._filterValue.set(value);
this.focusedOptionIndex.set(-1);
this.onFilter.emit({ originalEvent: event, filter: this._filterValue() });
Expand Down

0 comments on commit 5129958

Please sign in to comment.