Skip to content

Commit

Permalink
webdash: debounce tag filter input
Browse files Browse the repository at this point in the history
  • Loading branch information
adamstruck authored and buchanae committed Apr 4, 2018
1 parent fb31011 commit 59a452f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions webdash/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ <h4>Filter</h4>
<tr ng-repeat="tag in filters.tags">
<td>
<div>
<input type="text" class="form-control" ng-model="tag.key" placeholder="Key"/>
<input type="text" class="form-control" ng-model="tag.key" ng-model-options="{debounce: 1000}" placeholder="Key"/>
</div>
<div>
<input type="text" class="form-control" ng-model="tag.value" placeholder="Value"/>
<input type="text" class="form-control" ng-model="tag.value" ng-model-options="{debounce: 1000}" placeholder="Value"/>
</div>
</td>
<td>
Expand Down
24 changes: 12 additions & 12 deletions webdash/web.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 59a452f

Please sign in to comment.