Browse Source

Fix global search placeholder text

Jeremy Stretch 7 years ago
parent
commit
fde47133da
1 changed files with 1 additions and 1 deletions
  1. 1 1
      netbox/netbox/forms.py

+ 1 - 1
netbox/netbox/forms.py

@@ -35,7 +35,7 @@ OBJ_TYPE_CHOICES = (
 
 class SearchForm(BootstrapMixin, forms.Form):
     q = forms.CharField(
-        label='Query', widget=forms.TextInput(attrs={'style': 'width: 350px'})
+        label='Search', widget=forms.TextInput(attrs={'style': 'width: 350px'})
     )
     obj_type = forms.ChoiceField(
         choices=OBJ_TYPE_CHOICES, required=False, label='Type'