Skip to content

Commit 0e619af

Browse files
committed
Don't restrict milestone search for drafts to drafts belonging to
group, there are probably going to be some that are not associated at some point - Legacy-Id: 4588
1 parent 1d0ba6c commit 0e619af

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/wginfo/milestones.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,5 +369,5 @@ def reset_charter_milestones(request, acronym):
369369

370370

371371
def ajax_search_docs(request, acronym):
372-
docs = Document.objects.filter(name__icontains=request.GET.get('q',''), group__acronym=acronym, type="draft").order_by('name').distinct()[:20]
372+
docs = Document.objects.filter(name__icontains=request.GET.get('q',''), type="draft").order_by('name').distinct()[:20]
373373
return HttpResponse(json_doc_names(docs), mimetype='application/json')

0 commit comments

Comments
 (0)