diff --git a/src/app/admin/template/project_group_edit.html b/src/app/admin/template/project_group_edit.html index f5f30232..2a1e6aa9 100644 --- a/src/app/admin/template/project_group_edit.html +++ b/src/app/admin/template/project_group_edit.html @@ -115,6 +115,7 @@ required ng-model="project" typeahead-editable="false" + typeahead-wait-ms="200" typeahead="project as project.name for project in searchProjects($viewValue)" typeahead-loading="loadingProjects" diff --git a/src/app/admin/template/project_group_new.html b/src/app/admin/template/project_group_new.html index 09500cd4..06e27301 100644 --- a/src/app/admin/template/project_group_new.html +++ b/src/app/admin/template/project_group_new.html @@ -111,6 +111,7 @@ required ng-model="project" typeahead-editable="false" + typeahead-wait-ms="200" typeahead="project as project.name for project in searchProjects($viewValue)" typeahead-loading="loadingProjects" diff --git a/src/app/stories/template/new.html b/src/app/stories/template/new.html index 40ee74d3..e6fd6377 100644 --- a/src/app/stories/template/new.html +++ b/src/app/stories/template/new.html @@ -97,6 +97,7 @@ placeholder="Select a Project" required ng-model="asyncProject" + typeahead-wait-ms="200" typeahead-editable="false" typeahead="project as project.name for project in searchProjects($viewValue)" diff --git a/src/app/storyboard/template/header_menu.html b/src/app/storyboard/template/header_menu.html index 4f8f447e..7b4f8ae1 100644 --- a/src/app/storyboard/template/header_menu.html +++ b/src/app/storyboard/template/header_menu.html @@ -84,6 +84,7 @@ class="form-control" placeholder="Search" ng-model="searchString" + typeahead-wait-ms="200" typeahead-append-to-body="true" typeahead-editable="false" typeahead="criteria as criteria.title for criteria in quickSearch($viewValue)" diff --git a/src/app/util/template/project_typeahead.html b/src/app/util/template/project_typeahead.html index ecfe2e49..aed60810 100644 --- a/src/app/util/template/project_typeahead.html +++ b/src/app/util/template/project_typeahead.html @@ -44,6 +44,7 @@ focus="autoFocus" ng-blur="updateViewValue(selectedProject.id); toggleForm()" typeahead-editable="false" + typeahead-wait-ms="200" typeahead="project as project.name for project in searchProjects($viewValue)" typeahead-loading="loadingProjects" typeahead-input-formatter="formatProjectName($model)" diff --git a/src/app/util/template/user_typeahead.html b/src/app/util/template/user_typeahead.html index b78a76ab..093cc250 100644 --- a/src/app/util/template/user_typeahead.html +++ b/src/app/util/template/user_typeahead.html @@ -43,6 +43,7 @@ focus="autoFocus" ng-blur="updateViewValue(selectedUser.id); toggleForm()" typeahead-editable="false" + typeahead-wait-ms="200" typeahead="user as user.full_name for user in searchUsers($viewValue)" typeahead-loading="loadingUsers" typeahead-input-formatter="formatUserName($model)"