diff --git a/templates/shared/search/code/search.tmpl b/templates/shared/search/code/search.tmpl
index b81c6c8f36..7f1fda8822 100644
--- a/templates/shared/search/code/search.tmpl
+++ b/templates/shared/search/code/search.tmpl
@@ -4,7 +4,6 @@
 			"Value" .Keyword
 			"Disabled" .CodeIndexerUnavailable
 			"Placeholder" (ctx.Locale.Tr "search.code_kind")
-			"CodeIndexerDisabled" $.CodeIndexerDisabled
 			"Selected" $.CodeSearchMode
 			"Options" $.CodeSearchOptions}}
 </form>
diff --git a/templates/shared/search/combo_fuzzy.tmpl b/templates/shared/search/combo_fuzzy.tmpl
index 38189b0518..6dfec4c288 100644
--- a/templates/shared/search/combo_fuzzy.tmpl
+++ b/templates/shared/search/combo_fuzzy.tmpl
@@ -2,14 +2,12 @@
 {{/* Disabled (optional) - if search field/button has to be disabled */}}
 {{/* Placeholder (optional) - placeholder text to be used */}}
 {{/* IsFuzzy - state of the fuzzy/union search toggle */}}
-{{/* CodeIndexerDisabled (optional) - if the performed search is done using git-grep */}}
 {{/* Tooltip (optional) - a tooltip to be displayed on button hover */}}
 <div class="ui small fluid action input">
 	{{template "shared/search/input" dict "Value" .Value "Disabled" .Disabled "Placeholder" .Placeholder}}
 	{{template "shared/search/fuzzy"
 		dict
 			"Disabled" .Disabled
-			"IsFuzzy" .IsFuzzy
-			"CodeIndexerDisabled" .CodeIndexerDisabled}}
+			"IsFuzzy" .IsFuzzy}}
 	{{template "shared/search/button" dict "Disabled" .Disabled "Tooltip" .Tooltip}}
 </div>