Fix display of search field
This commit is contained in:
parent
50a7f628e4
commit
cb7332f4e9
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ class ServiceFilterForm(forms.Form):
|
|||
cloud_provider = forms.ModelChoiceField(
|
||||
queryset=CloudProvider.objects.all(), required=False
|
||||
)
|
||||
q = forms.CharField(required=False)
|
||||
q = forms.CharField(label=_("Search"), required=False)
|
||||
|
||||
def filter_queryset(self, queryset):
|
||||
if category := self.cleaned_data.get("category"):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue