Skip to content

Commit

Permalink
fix: KMCNG-705 set auto-complete minLength to 3
Browse files Browse the repository at this point in the history
  • Loading branch information
amirch1 committed Nov 6, 2017
1 parent dd878a8 commit 35d4e74
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
[multiple]="false"
[limitToSuggestions]="false"
placeholder="{{'applications.content.entryDetails.users.changeOwnerPH' | translate}}"
[minLength]="1"
[minLength]="3"
[suggestionsProvider]="_usersProvider"
(completeMethod)="_searchUsers($event)">
</kAutoComplete>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
suggestionSelectableField="isSelectable"
[multiple]="true"
[limitToSuggestions]="false"
[minLength]="2"
[minLength]="3"
[suggestionsProvider]="_tagsProvider"
(completeMethod)="_searchTags($event)">
</kAutoComplete>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
[multiple]="false"
[limitToSuggestions]="false"
placeholder="{{'applications.content.entryDetails.users.changeOwnerPH' | translate}}"
[minLength]="1"
[minLength]="3"
[suggestionsProvider]="_usersProvider"
(completeMethod)="_searchUsers($event)">
</kAutoComplete>
Expand Down

0 comments on commit 35d4e74

Please sign in to comment.