[hub][search] empty search and route fallback
diff --git a/erpnext/public/js/hub/marketplace.js b/erpnext/public/js/hub/marketplace.js
index a230c2c..7b2907a 100644
--- a/erpnext/public/js/hub/marketplace.js
+++ b/erpnext/public/js/hub/marketplace.js
@@ -137,7 +137,7 @@
 			this.subpages.favourites = new erpnext.hub.Favourites(this.$body);
 		}
 
-		if (route[1] === 'search' && route[2] && !this.subpages.search) {
+		if (route[1] === 'search' && !this.subpages.search) {
 			this.subpages.search = new erpnext.hub.SearchPage(this.$body);
 		}
 
@@ -298,9 +298,8 @@
 	}
 
 	refresh() {
-		this.keyword = frappe.get_route()[2];
+		this.keyword = frappe.get_route()[2] || '';
 		this.$wrapper.find('input').val(this.keyword);
-		if (!this.keyword) return;
 
 		this.get_items_by_keyword(this.keyword)
 			.then(items => this.render(items));
@@ -312,7 +311,8 @@
 
 	render(items) {
 		this.$wrapper.find('.hub-card-container').remove();
-		const html = get_item_card_container_html(items, __('Search results for "{0}"', [this.keyword]));
+		const title = this.keyword ? __('Search results for "{0}"', [this.keyword]) : '';
+		const html = get_item_card_container_html(items, title);
 		this.$wrapper.append(html);
 	}
 }
@@ -831,11 +831,14 @@
 
 function get_item_card_container_html(items, title='') {
 	const items_html = (items || []).map(item => get_item_card_html(item)).join('');
+	const title_html = title
+		? `<div class="col-sm-12 margin-bottom">
+				<b>${title}</b>
+			</div>`
+		: '';
 
 	const html = `<div class="row hub-card-container">
-		<div class="col-sm-12 margin-bottom">
-			<b>${title}</b>
-		</div>
+		${title_html}
 		${items_html}
 	</div>`;