We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d3693e commit 38f4a45Copy full SHA for 38f4a45
1 file changed
templates/task-list.html
@@ -159,7 +159,7 @@ <h3 id="taskActionModalTitle" class="task-action-title">Task</h3>
159
$(document).ready(function(){
160
$("#txtInputTable").on("keyup", function(){
161
var value = $(this).val().toLowerCase();
162
- $(".rect").filter(function(){
+ $(".rect").not(".task-action-shell").filter(function(){
163
$(this).toggle($(this).text().toLowerCase().indexOf(value) > -1)
164
});
165
0 commit comments