diff --git a/changelog/unreleased/GITHUB#4121-improve-search-in-dropdown.yml b/changelog/unreleased/GITHUB#4121-improve-search-in-dropdown.yml
new file mode 100644
index 00000000000..c9f6f9f0685
--- /dev/null
+++ b/changelog/unreleased/GITHUB#4121-improve-search-in-dropdown.yml
@@ -0,0 +1,7 @@
+title: Dropdowns for collection/core, for fields on the schema-page and for field-types on the analyze page are now using a contains-filtering
+type: changed
+authors:
+ - name: Renato Haeberli
+links:
+- name: GITHUB#4121
+ url: https://github.com/apache/solr/pull/4121
diff --git a/solr/webapp/web/index.html b/solr/webapp/web/index.html
index 7e692e0efcd..b3c7197a37e 100644
--- a/solr/webapp/web/index.html
+++ b/solr/webapp/web/index.html
@@ -204,6 +204,7 @@
ng-model="fieldOrType"
chosen
data-placeholder="Please select ..."
+ search-contains="true"
ng-change="selectFieldOrType()"
ng-options="f.value as f.label group by f.group for f in fieldsAndTypes">
@@ -445,7 +446,7 @@