Skip to content

Commit 61b1755

Browse files
committed
Change Type field default on groups search form, from WG to unset. Commit ready for merge
- Legacy-Id: 7843
1 parent eb2a639 commit 61b1755

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/secr/groups/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ def search(request):
413413
results = Group.objects.filter(parent__id=area,type='wg',state__in=('bof','active','proposed')).order_by('name')
414414
form = SearchForm({'primary_area':area,'state':'','type':'wg'})
415415
else:
416-
form = SearchForm(initial={'state':'active','type':'wg'})
416+
form = SearchForm(initial={'state':'active'})
417417

418418
# loop through results and tack on meeting_scheduled because it is no longer an
419419
# attribute of the meeting model

0 commit comments

Comments
 (0)