Skip to content

Commit

Permalink
add 1s debounce to ticket filter
Browse files Browse the repository at this point in the history
  • Loading branch information
cbellone committed May 20, 2018
1 parent e7e0533 commit df5d933
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ <h2>Tickets for {{$ctrl.ticketCategory.name}}</h2>
<div class="input-group-addon">
<i class="fa fa-search"></i>
</div>
<input class="form-control input-sm" ng-model="$ctrl.toSearch" ng-change="$ctrl.updateFilteredData()" placeholder="Filter Tickets">
<input class="form-control input-sm" ng-model="$ctrl.toSearch" ng-change="$ctrl.updateFilteredData()" ng-model-options="{ debounce: 1000 }" placeholder="Filter Tickets">
</div>
</label>
</div>
Expand Down

0 comments on commit df5d933

Please sign in to comment.