Index: src/wp-admin/js/dashboard.js
===================================================================
--- src/wp-admin/js/dashboard.js	(revision 40797)
+++ src/wp-admin/js/dashboard.js	(working copy)
@@ -234,10 +234,20 @@
 			$container.on( 'click', '.community-events-toggle-location, .community-events-cancel', app.toggleLocationForm );
 
 			$container.on( 'submit', '.community-events-form', function( event ) {
+				var location = $.trim( $( '#community-events-location' ).val() );
+
 				event.preventDefault();
 
+				/*
+				 * Don't trigger a search if the search feild is empty or the
+				 * search term was made of only spaces before being trimmed.
+				 */
+				if ( ! location ) {
+					return;
+				}
+
 				app.getEvents({
-					location: $( '#community-events-location' ).val()
+					location: location
 				});
 			});
 
