Skip to content

Commit 38f4a45

Browse files
committed
fix search completion
1 parent 4d3693e commit 38f4a45

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

templates/task-list.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ <h3 id="taskActionModalTitle" class="task-action-title">Task</h3>
159159
$(document).ready(function(){
160160
$("#txtInputTable").on("keyup", function(){
161161
var value = $(this).val().toLowerCase();
162-
$(".rect").filter(function(){
162+
$(".rect").not(".task-action-shell").filter(function(){
163163
$(this).toggle($(this).text().toLowerCase().indexOf(value) > -1)
164164
});
165165
});

0 commit comments

Comments
 (0)