Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
PetrDlouhy committed Feb 25, 2020
1 parent cdddc79 commit 07d6ee7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helpdesk/forms.py
Original file line number Diff line number Diff line change
@@ -183,7 +183,7 @@ def __init__(self, kbcategory=None, *args, **kwargs):
self.fields['kbitem'] = forms.ChoiceField(
widget=forms.Select(attrs={'class': 'form-control'}),
required=False,
label=_('Knowedge Base Item'),
label=_('Knowledge Base Item'),
choices=[(kbi.pk, kbi.title) for kbi in KBItem.objects.filter(category=kbcategory.pk)],
)

0 comments on commit 07d6ee7

Please sign in to comment.