Skip to content

Commit 9887ee7

Browse files
committed
fix bug where nomcom message dropdown empty
- Legacy-Id: 6379
1 parent cfbb115 commit 9887ee7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/secr/announcement/forms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ def get_to_choices():
141141

142142
class AnnounceForm(forms.ModelForm):
143143
#nomcom = forms.BooleanField(required=False)
144-
nomcom = forms.ModelChoiceField(queryset=Group.objects.filter(acronym__startswith='nomcom',type='ietf',state='active'),required=False)
144+
nomcom = forms.ModelChoiceField(queryset=Group.objects.filter(acronym__startswith='nomcom',type='nomcom',state='active'),required=False)
145145
to_custom = MultiEmailField(required=False,label='')
146146
#cc = MultiEmailField(required=False)
147147

0 commit comments

Comments
 (0)